summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Search
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2010-03-28 23:15:24 +0200
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-03-28 23:15:24 +0200
commite8f93b1e5dd4a7242fd504b4a1160bc1e24a71da (patch)
tree196cad45c73b90b6628a81e79eeae241e2f93740 /Bugzilla/Search
parent4171915f91c84d28cae2359db119f9df2fcb77e0 (diff)
downloadbugzilla-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
Diffstat (limited to 'Bugzilla/Search')
-rw-r--r--Bugzilla/Search/Quicksearch.pm2
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');
}
}