diff options
author | Dylan William Hardison <dylan@hardison.net> | 2016-11-09 19:37:41 +0100 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2016-11-09 19:37:41 +0100 |
commit | 04e3d20ef470de50b17a6cdb4df13f990a27e11d (patch) | |
tree | 6d7f2be5cf6119c7f6877aef1cfd3d2b9a180d3e /template | |
parent | 2938094f14bcfd3ae80fa6478986a51fffde499a (diff) | |
download | bugzilla-04e3d20ef470de50b17a6cdb4df13f990a27e11d.tar.gz bugzilla-04e3d20ef470de50b17a6cdb4df13f990a27e11d.tar.xz |
Revert "Bug 1313766 - Bugzilla::Bug->send_changes() should not output HTML directly"
This reverts commit 35671f4ab3397f4c0d5ea96e0269d94c3d6bd2ac.
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/process/bugmail.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/bug/process/bugmail.html.tmpl b/template/en/default/bug/process/bugmail.html.tmpl index 0c4f2f27d..21e4ff7b7 100644 --- a/template/en/default/bug/process/bugmail.html.tmpl +++ b/template/en/default/bug/process/bugmail.html.tmpl @@ -24,13 +24,13 @@ # sent_bugmail: The results of Bugzilla::BugMail::Send(). #%] -[% USE Bugzilla %] +[% USE CGI %] [% PROCESS global/variables.none.tmpl %] [%# hide the recipient list by default from new users %] [% show_recipients = user.settings.post_bug_submit_action.value == 'nothing' - || Bugzilla.cgi.cookie('show_bugmail_recipients') + || CGI.cookie('show_bugmail_recipients') || !user.can_see_bug(mailing_bugid) %] [% recipient_count = sent_bugmail.sent.size %] |