summaryrefslogtreecommitdiffstats
path: root/extensions/InlineHistory
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2012-04-19 22:22:17 +0200
committerByron Jones <bjones@mozilla.com>2012-04-19 22:22:17 +0200
commit02ca29517cbe2670073a36efd1321f7d2c4c0f92 (patch)
tree271f22bc8f0a2949e5377131e4ea9943c424794e /extensions/InlineHistory
parent3a02aca1cc20b43f10afbad70c56a14fbac414da (diff)
downloadbugzilla-02ca29517cbe2670073a36efd1321f7d2c4c0f92.tar.gz
bugzilla-02ca29517cbe2670073a36efd1321f7d2c4c0f92.tar.xz
Bug 747125: fix escaping in inline-history
Diffstat (limited to 'extensions/InlineHistory')
-rw-r--r--extensions/InlineHistory/template/en/default/hook/bug/comments-aftercomments.html.tmpl2
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 %]&amp;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 %]