Commit 5bfbabbd authored by terry%mozilla.org's avatar terry%mozilla.org

Wasn't finding anything if requesting target_milestone == "---".

parent 93886ab6
......@@ -465,7 +465,7 @@ sub GenerateSQL {
",anyexact" => sub {
my @list;
foreach my $w (split(/,/, $v)) {
if ($w eq "---") {
if ($w eq "---" && $f !~ /milestone/) {
$w = "";
}
push(@list, "$f = " . SqlQuote($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