From: lpsolit%gmail.com <> Date: Fri, 29 Dec 2006 10:15:21 +0000 (+0000) Subject: Bug 365254: When running a shared saved search, its name is not displayed at the... X-Git-Tag: bugzilla-2.23.4~102 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43b17e5fc7f29f6d4f952ba6fc83902a497a6fc8;p=thirdparty%2Fbugzilla.git Bug 365254: When running a shared saved search, its name is not displayed at the top of the bug list - Patch by Frédéric Buclin r/a=justdave --- diff --git a/buglist.cgi b/buglist.cgi index fe9ed743d7..0cab4fad77 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -387,9 +387,9 @@ if ($cgi->param('cmdtype') eq "dorem") { scalar $cgi->param('sharer_id')); # If this is the user's own query, remember information about it # so that it can be modified easily. + $vars->{'searchname'} = $cgi->param('namedcmd'); if (!$cgi->param('sharer_id') || $cgi->param('sharer_id') == Bugzilla->user->id) { - $vars->{'searchname'} = $cgi->param('namedcmd'); $vars->{'searchtype'} = "saved"; } $params = new Bugzilla::CGI($buffer);