diff options
author | lpsolit%gmail.com <> | 2008-10-21 09:04:09 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2008-10-21 09:04:09 +0200 |
commit | 87462d261811e78b9b2c8e82425c19e26b6c2e53 (patch) | |
tree | 6e82e0a34537542caa01b50729621ab932fc980b /template | |
parent | 27dfcceb519392c4014649d10b00d936adaf0daa (diff) | |
download | bugzilla-87462d261811e78b9b2c8e82425c19e26b6c2e53.tar.gz bugzilla-87462d261811e78b9b2c8e82425c19e26b6c2e53.tar.xz |
Bug 105865: When converting bug/attachment/comment numbers to links, quoteUrls() should take care of newlines and not linkify them if a newline is present - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'template')
-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 bf9326e8f..127f4a5fb 100644 --- a/template/en/default/bug/comments.html.tmpl +++ b/template/en/default/bug/comments.html.tmpl @@ -217,7 +217,7 @@ [% END %] <pre class="bz_comment_text" [% ' id="comment_text_' _ count _ '"' IF mode == "edit" %]> - [%- wrapped_comment FILTER quoteUrls(bug.bug_id) -%] + [%- wrapped_comment FILTER quoteUrls(bug.bug_id, comment.already_wrapped) -%] </pre> </div> [% END %] |