Commit aba9ca24 authored by bugreport%peshkin.net's avatar bugreport%peshkin.net

Bug 251567: Make sure "find a specific bug" doesn't miss exact matches in summary

r=justdave a=justdave
parent c6cd49e6
......@@ -306,7 +306,15 @@ sub init {
}
if (defined $params->param('content')) {
push(@specialchart, ['content', 'matches', $params->param('content')]);
# Append a new chart implementing content quicksearch
my $chart;
for ($chart = 0 ; $params->param("field$chart-0-0") ; $chart++) {};
$params->param("field$chart-0-0", 'content');
$params->param("type$chart-0-0", 'matches');
$params->param("value$chart-0-0", $params->param('content'));
$params->param("field$chart-0-1", 'short_desc');
$params->param("type$chart-0-1", 'allwords');
$params->param("value$chart-0-1", $params->param('content'));
}
my $chartid;
......
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