]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix for bug 46207 (bugidtype=exclude breaks buglist.cgi).
authordave%intrec.com <>
Tue, 25 Jul 2000 02:40:04 +0000 (02:40 +0000)
committerdave%intrec.com <>
Tue, 25 Jul 2000 02:40:04 +0000 (02:40 +0000)
buglist.cgi

index 8a022568513e3d10997487e6df3e363ac1e0092f..b9c6c4f343e06b1624f9761a25cf171357747311 100755 (executable)
@@ -163,7 +163,7 @@ sub GenerateSQL {
     if ($M{'bug_id'}) {
         my $type = "anyexact";
         if ($F{'bugidtype'} && $F{'bugidtype'} eq 'exclude') {
-            $type = "noexact";
+            $type = "nowords";
         }
         push(@specialchart, ["bug_id", $type, join(',', @{$M{'bug_id'}})]);
     }