summaryrefslogtreecommitdiffstats
path: root/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl
diff options
context:
space:
mode:
authorKohei Yoshino <kohei.yoshino@gmail.com>2018-07-17 16:05:45 +0200
committerDylan William Hardison <dylan@hardison.net>2018-07-17 16:05:45 +0200
commit2f91e373896ca57c6873a51d265c3f233709db99 (patch)
treef3dd73375f94a4412298f36d3266cd9098add64a /extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl
parent2d5dcb1f4ae8fe01625adb7469d21008b72892c9 (diff)
downloadbugzilla-2f91e373896ca57c6873a51d265c3f233709db99.tar.gz
bugzilla-2f91e373896ca57c6873a51d265c3f233709db99.tar.xz
Bug 1474026 - Double HTML escaping in crash signature update
Diffstat (limited to 'extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl')
-rw-r--r--extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl2
1 files changed, 1 insertions, 1 deletions
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, '&hellip;'));
+ sub.push("Whiteboard: " _ bug.status_whiteboard.truncate(256, '…'));
END;
IF bug.cf_crash_signature != "";
sub.push("crash signature");