diff options
author | Byron Jones <bjones@mozilla.com> | 2012-04-19 22:22:17 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2012-04-19 22:22:17 +0200 |
commit | 02ca29517cbe2670073a36efd1321f7d2c4c0f92 (patch) | |
tree | 271f22bc8f0a2949e5377131e4ea9943c424794e /extensions | |
parent | 3a02aca1cc20b43f10afbad70c56a14fbac414da (diff) | |
download | bugzilla-02ca29517cbe2670073a36efd1321f7d2c4c0f92.tar.gz bugzilla-02ca29517cbe2670073a36efd1321f7d2c4c0f92.tar.xz |
Bug 747125: fix escaping in inline-history
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/InlineHistory/template/en/default/hook/bug/comments-aftercomments.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/InlineHistory/template/en/default/hook/bug/comments-aftercomments.html.tmpl b/extensions/InlineHistory/template/en/default/hook/bug/comments-aftercomments.html.tmpl index 1777dfe68..b62c73cf0 100644 --- a/extensions/InlineHistory/template/en/default/hook/bug/comments-aftercomments.html.tmpl +++ b/extensions/InlineHistory/template/en/default/hook/bug/comments-aftercomments.html.tmpl @@ -46,7 +46,7 @@ [% IF change.attachid %] html += '<a ' + 'href="attachment.cgi?id=[% change.attachid FILTER none %]&action=edit" ' - + 'title="[% change.attach.description FILTER js %]" ' + + 'title="[% change.attach.description FILTER html FILTER js %]" ' + 'class="[% "bz_obsolete" IF change.attach.isobsolete %]"' + '>Attachment #[% change.attachid FILTER none %]</a> - '; [% END %] |