From: terry%mozilla.org <> Date: Sun, 23 Jan 2000 12:01:25 +0000 (+0000) Subject: Fixed stupid typo that caused exact email searches in descriptions to crash. X-Git-Tag: bugzilla-2.12~428 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be3befceca30729fa1a7e2ac77291bce5ef50e52;p=thirdparty%2Fbugzilla.git Fixed stupid typo that caused exact email searches in descriptions to crash. --- diff --git a/buglist.cgi b/buglist.cgi index 02188e647d..075f0dd9c8 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -386,7 +386,7 @@ foreach my $id ("1", "2") { if ($field eq "cc") { $query .= "\t$lead cc.who = $emailid\n"; } elsif ($field eq "longdesc") { - $query .= "\t$lead longdesc.who = $emailid\n"; + $query .= "\t$lead longdescs.who = $emailid\n"; } else { $query .= "\t$lead $field = $emailid\n"; }