diff options
author | Byron Jones <bjones@mozilla.com> | 2013-09-09 08:11:05 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-09-09 08:11:05 +0200 |
commit | 9d6fe204c8b7d8b4d34ba4abc78504a602822756 (patch) | |
tree | 4dc9badf4d75d320064e4c8eb33d3dfbd6412d4b | |
parent | 9451fe4f8c5662127d53c23b6976ec5f203d0f0e (diff) | |
download | bugzilla-9d6fe204c8b7d8b4d34ba4abc78504a602822756.tar.gz bugzilla-9d6fe204c8b7d8b4d34ba4abc78504a602822756.tar.xz |
Bug 912546: page title is no longer displayed in the header
-rw-r--r-- | template/en/default/global/header.html.tmpl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl index fae10996d..489d1c0f6 100644 --- a/template/en/default/global/header.html.tmpl +++ b/template/en/default/global/header.html.tmpl @@ -364,6 +364,14 @@ <div id="bugzilla-body"> +[%# in most cases the "header" variable provides redundant information, however + # there are exceptions where not displaying this text is problematic. %] +[% IF user.settings.skin.value == 'Mozilla' + && template.name.match('^attachment/') +%] + <h2>[% header FILTER none %]</h2> +[% END %] + [% IF Param('announcehtml') %] [% Param('announcehtml') FILTER none %] [% END %] |