summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2007-12-07 19:29:20 +0100
committerlpsolit%gmail.com <>2007-12-07 19:29:20 +0100
commiteb08f76a0dbac980de6792106537b6fa5d6fbe85 (patch)
treec36f1aab3f912b0e478ecba1489d582493c9ed34 /Bugzilla
parent80f03f16c9aa3e2b27f087677c5a43e9e9175a8f (diff)
downloadbugzilla-eb08f76a0dbac980de6792106537b6fa5d6fbe85.tar.gz
bugzilla-eb08f76a0dbac980de6792106537b6fa5d6fbe85.tar.xz
Bug 362436: Allow to search for '---' in versions and milestones - Patch by michael.j.tosh@lmco.com r=justdave a=mkanat
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Search.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index bb6d9af34..b30f74911 100644
--- a/Bugzilla/Search.pm
+++ b/Bugzilla/Search.pm
@@ -1074,7 +1074,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);