Commit e8f93b1e authored by Max Kanat-Alexander's avatar Max Kanat-Alexander

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
parent 4171915f
...@@ -232,7 +232,7 @@ sub _bug_numbers_only { ...@@ -232,7 +232,7 @@ sub _bug_numbers_only {
# List of bug numbers. # List of bug numbers.
$cgi->param('bug_id', $searchstring); $cgi->param('bug_id', $searchstring);
$cgi->param('order', 'bugs.bug_id'); $cgi->param('order', 'bugs.bug_id');
$cgi->param('bug_id_type', 'include'); $cgi->param('bug_id_type', 'anyexact');
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment