From: Max Kanat-Alexander Date: Sun, 28 Mar 2010 21:15:24 +0000 (-0700) Subject: Bug 550148: Using Quicksearch with a comma-separated list of bug ids was X-Git-Tag: bugzilla-3.7.1~162 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8f93b1e5dd4a7242fd504b4a1160bc1e24a71da;p=thirdparty%2Fbugzilla.git Bug 550148: Using Quicksearch with a comma-separated list of bug ids was throwing an error, and this patch fixes it r=LpSolit, a=LpSolit --- diff --git a/Bugzilla/Search/Quicksearch.pm b/Bugzilla/Search/Quicksearch.pm index 1e0bdc437e..1505274e95 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'); } }