]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 550148: Using Quicksearch with multiple, comma-separated bug ids was
authorMax Kanat-Alexander <mkanat@bugzilla.org>
Sun, 28 Mar 2010 21:16:44 +0000 (14:16 -0700)
committerMax Kanat-Alexander <mkanat@bugzilla.org>
Sun, 28 Mar 2010 21:16:44 +0000 (14:16 -0700)
throwing an error, and this fixes it
r=LpSolit, a=LpSolit

Bugzilla/Search/Quicksearch.pm

index e3dcc7e89842699eb493f2d2eaca366e01cd23df..3732be76d28edc35033173d5cbe1307bd98da84b 100644 (file)
@@ -232,7 +232,7 @@ sub _bug_numbers_only {
         # List of bug numbers.
         $cgi->param('bug_id', $searchstring);
         $cgi->param('order', 'bugs.bug_id');
-        $cgi->param('bug_id_type', 'include');
+        $cgi->param('bug_id_type', 'anyexact');
     }
 }