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

r=justdave
a=justdave


git-svn-id: svn://10.0.0.236/trunk@159377 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bugreport%peshkin.net
2004-07-17 01:33:51 +00:00
parent 55daebba65
commit 26e1d25123

View File

@@ -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;