diff options
author | Byron Jones <bjones@mozilla.com> | 2012-01-20 05:50:34 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2012-01-20 05:50:34 +0100 |
commit | e16982d71efca56d684af5b8828134c6b3c63c24 (patch) | |
tree | 98d274b51cf5fee0304c8ffb9b3b1d042447c1a2 /template/en | |
parent | 5088885c1f701cddff4ba788a9dbf18809c1832d (diff) | |
download | bugzilla-e16982d71efca56d684af5b8828134c6b3c63c24.tar.gz bugzilla-e16982d71efca56d684af5b8828134c6b3c63c24.tar.xz |
Bug 719704: fix reply link not quoting the entire comment
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/bug/comments.html.tmpl | 2 |
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'); |