Bug 417507: Search.pm broken when searching for empty resolutions (regression) - Patch by miketosh <michael.j.tosh@lmco.com> r/a=LpSolit

git-svn-id: svn://10.0.0.236/trunk@245774 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
lpsolit%gmail.com
2008-02-15 11:09:35 +00:00
parent 4d05d2b9a5
commit ffa269513e

View File

@@ -2033,7 +2033,7 @@ sub _anyexact {
my @list;
foreach my $w (split(/,/, $$v)) {
if ($w eq "---" && $$f !~ /resolution/) {
if ($w eq "---" && $$f =~ /resolution/) {
$w = "";
}
$$q = $dbh->quote($w);