diff options
author | Kohei Yoshino <kohei.yoshino@gmail.com> | 2018-07-17 16:05:45 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-07-17 16:05:45 +0200 |
commit | 2f91e373896ca57c6873a51d265c3f233709db99 (patch) | |
tree | f3dd73375f94a4412298f36d3266cd9098add64a /extensions | |
parent | 2d5dcb1f4ae8fe01625adb7469d21008b72892c9 (diff) | |
download | bugzilla-2f91e373896ca57c6873a51d265c3f233709db99.tar.gz bugzilla-2f91e373896ca57c6873a51d265c3f233709db99.tar.xz |
Bug 1474026 - Double HTML escaping in crash signature update
Diffstat (limited to 'extensions')
3 files changed, 3 insertions, 3 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl index 51919ab27..883393fba 100644 --- a/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl @@ -383,7 +383,7 @@ value FILTER bug_list_link; ELSE; - value FILTER truncate(256, '…') FILTER html; + value FILTER truncate(256, '…') FILTER html; END; END; diff --git a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl index b61e742b4..d82e1a684 100644 --- a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl @@ -1023,7 +1023,7 @@ [% sub = []; IF bug.status_whiteboard != ""; - sub.push("Whiteboard: " _ bug.status_whiteboard.truncate(256, '…')); + sub.push("Whiteboard: " _ bug.status_whiteboard.truncate(256, '…')); END; IF bug.cf_crash_signature != ""; sub.push("crash signature"); diff --git a/extensions/BugmailFilter/template/en/default/account/prefs/bugmail_filter.html.tmpl b/extensions/BugmailFilter/template/en/default/account/prefs/bugmail_filter.html.tmpl index bb1381c46..ff64f8323 100644 --- a/extensions/BugmailFilter/template/en/default/account/prefs/bugmail_filter.html.tmpl +++ b/extensions/BugmailFilter/template/en/default/account/prefs/bugmail_filter.html.tmpl @@ -221,7 +221,7 @@ var cpts = new Array(); [% FOREACH flag = type.flags %] [% IF flag_count > 10 && loop.count == 10 %] <span id="show_all"> - … + … (<a href="#" onclick="showAllFlags(); return false">show all</a>) </span> <span id="all_flags" class="bz_default_hidden"> |