From 8198941775555c8c97ec90762da32932ce5184d9 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" Date: Fri, 24 Mar 2000 01:17:19 +0000 Subject: [PATCH] Wasn't finding anything if requesting target_milestone == "---". git-svn-id: svn://10.0.0.236/trunk@63964 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/buglist.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/buglist.cgi b/mozilla/webtools/bugzilla/buglist.cgi index eb82b48a8e4..297cdd30530 100755 --- a/mozilla/webtools/bugzilla/buglist.cgi +++ b/mozilla/webtools/bugzilla/buglist.cgi @@ -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));