diff options
author | mkanat%bugzilla.org <> | 2008-12-06 20:44:42 +0100 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2008-12-06 20:44:42 +0100 |
commit | cce0280bc6d98dbe6ba73e59b092e469f3435dd0 (patch) | |
tree | bf9b3549632f768b714370c5f8a16af59972eb47 /buglist.cgi | |
parent | 33429813a654f7a93a7be40b35e9fb7629d74dab (diff) | |
download | bugzilla-cce0280bc6d98dbe6ba73e59b092e469f3435dd0.tar.gz bugzilla-cce0280bc6d98dbe6ba73e59b092e469f3435dd0.tar.xz |
Bug 463002 - Show a description of what you searched for, at the top of buglist.cgi
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=bbaetz, a=mkanat
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi index f83f957fc..037edae70 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -992,6 +992,7 @@ my $search = new Bugzilla::Search('fields' => \@selectnames, 'params' => $params, 'order' => \@orderstrings); my $query = $search->getSQL(); +$vars->{'search_description'} = $search->search_description; if (defined $cgi->param('limit')) { my $limit = $cgi->param('limit'); @@ -1019,7 +1020,6 @@ if ($cgi->param('debug')) { if (Bugzilla->user->in_group('admin')) { $vars->{'query_explain'} = $dbh->bz_explain($query); } - $vars->{'debugdata'} = $search->getDebugData(); } # Time to use server push to display an interim message to the user until |