From: lpsolit%gmail.com <> Date: Fri, 15 Feb 2008 17:09:35 +0000 (+0000) Subject: Bug 417507: Search.pm broken when searching for empty resolutions (regression) -... X-Git-Tag: bugzilla-3.1.3~311 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c0f6c730d9e09b59696d4e7b2a928838346dbf53;p=thirdparty%2Fbugzilla.git Bug 417507: Search.pm broken when searching for empty resolutions (regression) - Patch by miketosh r/a=LpSolit --- diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 709033a267..6db637b5f3 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -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);