diff options
author | mkanat%bugzilla.org <> | 2009-10-01 01:42:49 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-10-01 01:42:49 +0200 |
commit | aef9ce78eca5f7a0dae98d67af8fb72ebd1fafb7 (patch) | |
tree | f8104317e1417fe7544d682a1544802591046cfc /template | |
parent | 58787923c838e5a1fc90d3f98e27a443bb1e1122 (diff) | |
download | bugzilla-aef9ce78eca5f7a0dae98d67af8fb72ebd1fafb7.tar.gz bugzilla-aef9ce78eca5f7a0dae98d67af8fb72ebd1fafb7.tar.xz |
Bug 364254: Add hook to Bugzilla::Template::quoteUrls
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=dkl, a=mkanat
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/comments.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/bug/edit.html.tmpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/bug/comments.html.tmpl b/template/en/default/bug/comments.html.tmpl index 177c6f985..2f9eeebf6 100644 --- a/template/en/default/bug/comments.html.tmpl +++ b/template/en/default/bug/comments.html.tmpl @@ -222,7 +222,7 @@ [% END %] <pre class="bz_comment_text" [% ' id="comment_text_' _ count _ '"' IF mode == "edit" %]> - [%- wrapped_comment FILTER quoteUrls(bug.bug_id, comment.already_wrapped) -%] + [%- wrapped_comment FILTER quoteUrls(bug, comment) -%] </pre> </div> [% END %] diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index e050ee64c..d8a7fa4d7 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -312,7 +312,7 @@ (<span id="alias_nonedit_display">[% bug.alias FILTER html %]</span>) [% END %] [% END %] - <span id="short_desc_nonedit_display">[% bug.short_desc FILTER quoteUrls(bug.bug_id) %]</span> + <span id="short_desc_nonedit_display">[% bug.short_desc FILTER quoteUrls(bug) %]</span> [% IF bug.check_can_change_field('short_desc', 0, 1) || bug.check_can_change_field('alias', 0, 1) %] <small class="editme">(<a href="#" id="editme_action">edit</a>)</small> |