Commit be3befce authored by terry%mozilla.org's avatar terry%mozilla.org

Fixed stupid typo that caused exact email searches in descriptions to crash.

parent 32dc75f2
...@@ -386,7 +386,7 @@ foreach my $id ("1", "2") { ...@@ -386,7 +386,7 @@ foreach my $id ("1", "2") {
if ($field eq "cc") { if ($field eq "cc") {
$query .= "\t$lead cc.who = $emailid\n"; $query .= "\t$lead cc.who = $emailid\n";
} elsif ($field eq "longdesc") { } elsif ($field eq "longdesc") {
$query .= "\t$lead longdesc.who = $emailid\n"; $query .= "\t$lead longdescs.who = $emailid\n";
} else { } else {
$query .= "\t$lead $field = $emailid\n"; $query .= "\t$lead $field = $emailid\n";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment