From: lpsolit%gmail.com <> Date: Fri, 13 Oct 2006 20:01:57 +0000 (+0000) Subject: Bug 356393: No title is displayed when confirming a bug by popular votes - Patch... X-Git-Tag: bugzilla-2.22.1~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=605d878626d8bdbf18750fda52499fcf1782b4a3;p=thirdparty%2Fbugzilla.git Bug 356393: No title is displayed when confirming a bug by popular votes - Patch by Frédéric Buclin r=wurblzap a=justdave --- diff --git a/template/en/default/bug/process/header.html.tmpl b/template/en/default/bug/process/header.html.tmpl index 055389797e..6a9581cb34 100644 --- a/template/en/default/bug/process/header.html.tmpl +++ b/template/en/default/bug/process/header.html.tmpl @@ -29,6 +29,8 @@ [% title = "$terms.Bug processed" %] [% ELSIF title_tag == "mid_air" %] [% title = "Mid-air collision!" %] +[% ELSIF title_tag == "change_votes" %] + [% title = "Change Votes" %] [% END %] [% PROCESS global/header.html.tmpl %] diff --git a/votes.cgi b/votes.cgi index 43e359393f..7616e5e16b 100755 --- a/votes.cgi +++ b/votes.cgi @@ -359,6 +359,7 @@ sub record_votes { $vars->{'type'} = "votes"; $vars->{'mailrecipients'} = { 'changer' => Bugzilla->user->login }; + $vars->{'title_tag'} = 'change_votes'; foreach my $bug_id (@updated_bugs) { $vars->{'id'} = $bug_id;