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

Bugzilla/Search/Quicksearch.pm

index 1e0bdc437e0301547a82c3f4f6603016aac9211a..1505274e95680ee31d2084502d16016eb3704a56 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');
     }
 }