Commit c0f6c730 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 417507: Search.pm broken when searching for empty resolutions (regression) -…

Bug 417507: Search.pm broken when searching for empty resolutions (regression) - Patch by miketosh <michael.j.tosh@lmco.com> r/a=LpSolit
parent e7ba6d75
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment