diff options
author | lpsolit%gmail.com <> | 2006-10-15 05:48:47 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-10-15 05:48:47 +0200 |
commit | b0ddda44bee03e94f04368dd68e8c0784de4a945 (patch) | |
tree | a1df1928c46bbe1b99cb06bad981dc69c13bc65d /template/en/default/reports | |
parent | b1ef63e5bfc0d3995245b42154686db1400b2c22 (diff) | |
download | bugzilla-b0ddda44bee03e94f04368dd68e8c0784de4a945.tar.gz bugzilla-b0ddda44bee03e94f04368dd68e8c0784de4a945.tar.xz |
Bug 330555: [SECURITY] H1, H2 and H3 are not filtered in global/header.html.tmpl - Patch by Frédéric Buclin <LpSolit@gmail.com> r=justdave a=justdave
Diffstat (limited to 'template/en/default/reports')
-rw-r--r-- | template/en/default/reports/duplicates.html.tmpl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/template/en/default/reports/duplicates.html.tmpl b/template/en/default/reports/duplicates.html.tmpl index 72f79e255..f60f28558 100644 --- a/template/en/default/reports/duplicates.html.tmpl +++ b/template/en/default/reports/duplicates.html.tmpl @@ -36,12 +36,15 @@ [% PROCESS global/variables.none.tmpl %] [% IF query_products.size %] - [% title = "Most Frequently Reported $terms.Bugs for ${query_products.join(', ')}" %] + [% title = BLOCK %] + Most Frequently Reported [% terms.Bugs %] for [% query_products.join(', ') FILTER html %] + [% END %] [% ELSE %] [% title = "Most Frequently Reported $terms.Bugs" %] [% END%] [% PROCESS global/header.html.tmpl + title = title style = ".resolved { background-color: #d9d9d9; color: #000000; }" %] |