aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArshad Kazmi <arshadkazmi42@gmail.com>2018-09-26 02:33:41 +0530
committerdklawren <dklawren@users.noreply.github.com>2018-09-25 17:03:41 -0400
commit3395d78cc8b0bd660e56f73a2689d495f2a22628 (patch)
tree409ecaa444c2912220668c8e93524fd948bda9bd
parentadd a new hook: template_after_create (#60) (diff)
downloadbugzilla-3395d78cc8b0bd660e56f73a2689d495f2a22628.tar.gz
bugzilla-3395d78cc8b0bd660e56f73a2689d495f2a22628.tar.bz2
bugzilla-3395d78cc8b0bd660e56f73a2689d495f2a22628.zip
Bug 1226123 - Email addresses with an apostrophe in them break the "Send Mail to Bug Assignees" button in buglists
-rw-r--r--template/en/default/list/list.html.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl
index 368cd9c08..d34a454e0 100644
--- a/template/en/default/list/list.html.tmpl
+++ b/template/en/default/list/list.html.tmpl
@@ -250,7 +250,7 @@
[% IF bugowners && user.id %]
<button type="button" id="email_assignees"
- onclick="document.location='mailto:[% bugowners FILTER html %]'">
+ onclick="document.location='mailto:[% bugowners FILTER html FILTER js %]'">
Send Mail to [% terms.Bug %] Assignees</button>
[% END %]