diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-08-27 20:12:30 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-08-27 20:12:30 +0200 |
commit | ee28112b01e1ea22ee0cccca898f38d14ed54f29 (patch) | |
tree | 12a60ae880e8c62022ed6576223bc22dc5cb9821 /template | |
parent | d84eb9775323c4a3ba52a1f8fe0147cd6d2c32a0 (diff) | |
download | bugzilla-ee28112b01e1ea22ee0cccca898f38d14ed54f29.tar.gz bugzilla-ee28112b01e1ea22ee0cccca898f38d14ed54f29.tar.xz |
Bug 785917: Custom field descriptions are not properly escaped when displayed as bug list column headers
r=glob a=LpSolit
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/filterexceptions.pl | 1 | ||||
-rw-r--r-- | template/en/default/list/table.html.tmpl | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/template/en/default/filterexceptions.pl b/template/en/default/filterexceptions.pl index 3cd970739..505ddae23 100644 --- a/template/en/default/filterexceptions.pl +++ b/template/en/default/filterexceptions.pl @@ -138,7 +138,6 @@ 'list/table.html.tmpl' => [ 'tableheader', 'bug.bug_id', - 'abbrev.$id.title || field_descs.$id || column.title', ], 'list/list.csv.tmpl' => [ diff --git a/template/en/default/list/table.html.tmpl b/template/en/default/list/table.html.tmpl index 2e73d14cd..96f4ea342 100644 --- a/template/en/default/list/table.html.tmpl +++ b/template/en/default/list/table.html.tmpl @@ -119,7 +119,7 @@ [% PROCESS new_order %] [%-#%]&query_based_on= [% defaultsavename OR searchname FILTER uri %]"> - [%- abbrev.$id.title || field_descs.$id || column.title -%] + [%- abbrev.$id.title || field_descs.$id || column.title FILTER html -%] [% PROCESS order_arrow ~%] </a> </th> |