From: lpsolit%gmail.com <> Date: Fri, 7 Dec 2007 18:31:04 +0000 (+0000) Subject: Bug 362436: Allow to search for '---' in versions and milestones - Patch by michael... X-Git-Tag: bugzilla-3.0.3~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=807d6b8dab1f0ee947f9ea846a7e2a4c4dfcdcb7;p=thirdparty%2Fbugzilla.git Bug 362436: Allow to search for '---' in versions and milestones - Patch by michael.j.tosh@lmco.com r=justdave a=mkanat --- diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index bd63e208e7..2673efaa91 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -1112,7 +1112,7 @@ sub init { ",anyexact" => sub { my @list; foreach my $w (split(/,/, $v)) { - if ($w eq "---" && $f !~ /milestone/) { + if ($w eq "---" && $f =~ /resolution/) { $w = ""; } $q = $dbh->quote($w);