Stupid typo caused "any words" and "all words" searches on the long

description to crash.
This commit is contained in:
terry%mozilla.org 2000-01-22 19:31:41 +00:00
Родитель 53834f0a62
Коммит 2f96a4a900
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -536,9 +536,9 @@ foreach my $f ("short_desc", "long_desc", "bug_file_loc",
} elsif ($type eq "casesubstring") {
$query .= "and instr($n, $q)\n";
} elsif ($type eq "allwords") {
$query .= GetByWordList($f, $s, "and");
$query .= GetByWordList($n, $s, "and");
} elsif ($type eq "anywords") {
$query .= GetByWordList($f, $s, "or");
$query .= GetByWordList($n, $s, "or");
} else {
$query .= "and instr(lower($n), lower($q))\n";
}