From: Max Kanat-Alexander Date: Sun, 28 Mar 2010 21:16:44 +0000 (-0700) Subject: Bug 550148: Using Quicksearch with multiple, comma-separated bug ids was X-Git-Tag: bugzilla-3.6~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2fdbeafc8260417ec4604fc26f489edcc0e05434;p=thirdparty%2Fbugzilla.git Bug 550148: Using Quicksearch with multiple, comma-separated bug ids was throwing an error, and this fixes it r=LpSolit, a=LpSolit --- diff --git a/Bugzilla/Search/Quicksearch.pm b/Bugzilla/Search/Quicksearch.pm index e3dcc7e898..3732be76d2 100644 --- a/Bugzilla/Search/Quicksearch.pm +++ b/Bugzilla/Search/Quicksearch.pm @@ -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'); } }