summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Search.pm
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2008-02-15 18:09:35 +0100
committerlpsolit%gmail.com <>2008-02-15 18:09:35 +0100
commitc0f6c730d9e09b59696d4e7b2a928838346dbf53 (patch)
treed28754cb0be91aa92514aef20e919d05f3817dc3 /Bugzilla/Search.pm
parente7ba6d75bc128addbcdb04c5bb975e107e0d42c2 (diff)
downloadbugzilla-c0f6c730d9e09b59696d4e7b2a928838346dbf53.tar.gz
bugzilla-c0f6c730d9e09b59696d4e7b2a928838346dbf53.tar.xz
Bug 417507: Search.pm broken when searching for empty resolutions (regression) - Patch by miketosh <michael.j.tosh@lmco.com> r/a=LpSolit
Diffstat (limited to 'Bugzilla/Search.pm')
-rw-r--r--Bugzilla/Search.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index 709033a26..6db637b5f 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);