diff options
author | Byron Jones <bjones@mozilla.com> | 2012-05-08 14:13:49 +0800 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2012-05-08 14:13:49 +0800 |
commit | 16e6b9c6ae479e28cd77204a3d7d9966b293c19a (patch) | |
tree | 6946d49ea5fffca181ddf193599a92d33d1f81f7 /template/en/default/email/bugmail-header.txt.tmpl | |
parent | 4f608d4d3489935d55c20e15cc2ec7d700887ed4 (diff) | |
download | bugs-16e6b9c6ae479e28cd77204a3d7d9966b293c19a.tar bugs-16e6b9c6ae479e28cd77204a3d7d9966b293c19a.tar.gz bugs-16e6b9c6ae479e28cd77204a3d7d9966b293c19a.tar.bz2 bugs-16e6b9c6ae479e28cd77204a3d7d9966b293c19a.tar.xz bugs-16e6b9c6ae479e28cd77204a3d7d9966b293c19a.zip |
Bug 663747: Add an option to disable 'New: ' prefix on bugmail
r=gerv, a=LpSolit
Diffstat (limited to 'template/en/default/email/bugmail-header.txt.tmpl')
-rw-r--r-- | template/en/default/email/bugmail-header.txt.tmpl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/template/en/default/email/bugmail-header.txt.tmpl b/template/en/default/email/bugmail-header.txt.tmpl index 7454b3684..7335ad9ec 100644 --- a/template/en/default/email/bugmail-header.txt.tmpl +++ b/template/en/default/email/bugmail-header.txt.tmpl @@ -8,10 +8,12 @@ [% PROCESS "global/reason-descs.none.tmpl" %] [% isnew = bug.lastdiffed ? 0 : 1 %] +[% show_new = isnew + && (to_user.settings.bugmail_new_prefix.value == 'on') %] From: [% Param('mailfrom') %] To: [% to_user.email %] -Subject: [[% terms.Bug %] [%+ bug.id %]] [% 'New: ' IF isnew %][%+ bug.short_desc %] +Subject: [[% terms.Bug %] [%+ bug.id %]] [% 'New: ' IF show_new %][%+ bug.short_desc %] Date: [% date %] X-Bugzilla-Reason: [% reasonsheader %] X-Bugzilla-Type: [% isnew ? 'new' : 'changed' %] |