diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-03-28 23:15:24 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-03-28 23:15:24 +0200 |
commit | e8f93b1e5dd4a7242fd504b4a1160bc1e24a71da (patch) | |
tree | 196cad45c73b90b6628a81e79eeae241e2f93740 | |
parent | 4171915f91c84d28cae2359db119f9df2fcb77e0 (diff) | |
download | bugzilla-e8f93b1e5dd4a7242fd504b4a1160bc1e24a71da.tar.gz bugzilla-e8f93b1e5dd4a7242fd504b4a1160bc1e24a71da.tar.xz |
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
-rw-r--r-- | Bugzilla/Search/Quicksearch.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Search/Quicksearch.pm b/Bugzilla/Search/Quicksearch.pm index 1e0bdc437..1505274e9 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'); } } |