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

git-svn-id: svn://10.0.0.236/trunk@63964 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
terry%mozilla.org
2000-03-24 01:17:19 +00:00
parent d642a1682f
commit 8198941775

View File

@@ -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));