diff options
author | Dylan William Hardison <dylan@hardison.net> | 2016-12-16 21:44:19 +0100 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2016-12-16 21:44:19 +0100 |
commit | e0040665d073cb044bcee0aac730d8fca175d852 (patch) | |
tree | 8878b416bbff43e3e94fce4f29ff815e9b49b222 /template | |
parent | 50fe01e3ee89cd9395dc21a739b8bc74b5c54272 (diff) | |
download | bugzilla-e0040665d073cb044bcee0aac730d8fca175d852.tar.gz bugzilla-e0040665d073cb044bcee0aac730d8fca175d852.tar.xz |
Revert "Bug 1313766 - Bugzilla::Bug->send_changes() should not output HTML directly"
This reverts commit 490499f9a35b36b72c0b7b30322b9838774b93fe.
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 %] |