summaryrefslogtreecommitdiffstats
path: root/template/en/default/bug
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2012-01-20 05:50:34 +0100
committerByron Jones <bjones@mozilla.com>2012-01-20 05:50:34 +0100
commite16982d71efca56d684af5b8828134c6b3c63c24 (patch)
tree98d274b51cf5fee0304c8ffb9b3b1d042447c1a2 /template/en/default/bug
parent5088885c1f701cddff4ba788a9dbf18809c1832d (diff)
downloadbugzilla-e16982d71efca56d684af5b8828134c6b3c63c24.tar.gz
bugzilla-e16982d71efca56d684af5b8828134c6b3c63c24.tar.xz
Bug 719704: fix reply link not quoting the entire comment
Diffstat (limited to 'template/en/default/bug')
-rw-r--r--template/en/default/bug/comments.html.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/bug/comments.html.tmpl b/template/en/default/bug/comments.html.tmpl
index 635fc5848..2a00b47ec 100644
--- a/template/en/default/bug/comments.html.tmpl
+++ b/template/en/default/bug/comments.html.tmpl
@@ -48,7 +48,7 @@
[% END %]
/* Remove embedded links to attachment details */
- replytext = replytext.replace(/(attachment\s+\d+)(\s+\[[^\[]+\])+/gi, '$1');
+ replytext = replytext.replace(/(attachment\s+\d+)(\s+\[[^\[\n]+\])+/gi, '$1');
/* <textarea id="comment"> */
var textarea = document.getElementById('comment');