diff options
-rw-r--r-- | Bugzilla/Search.pm | 2 |
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); |