diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2010-08-27 21:53:10 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-08-27 21:53:10 +0200 |
commit | e244627ee131c348f6ca7e821ca64b6aa2119ac9 (patch) | |
tree | 7a506fb69dd965f19c6e8116a2a015ab6ce9c7e0 /extensions | |
parent | 0844fe9fc6d2d5293fad1384d2955dedf30fc8c4 (diff) | |
download | bugzilla-e244627ee131c348f6ca7e821ca64b6aa2119ac9.tar.gz bugzilla-e244627ee131c348f6ca7e821ca64b6aa2119ac9.tar.xz |
Bug 398701: Replace |FILTER url_quote| by |FILTER uri|, including extensions/Voting
r/a=mkanat
Diffstat (limited to 'extensions')
4 files changed, 9 insertions, 9 deletions
diff --git a/extensions/Voting/template/en/default/hook/admin/products/updated-changes.html.tmpl b/extensions/Voting/template/en/default/hook/admin/products/updated-changes.html.tmpl index 139fc641b..af2b1c102 100644 --- a/extensions/Voting/template/en/default/hook/admin/products/updated-changes.html.tmpl +++ b/extensions/Voting/template/en/default/hook/admin/products/updated-changes.html.tmpl @@ -59,7 +59,7 @@ [% IF changes.too_many_votes.size %] [% FOREACH detail = changes.too_many_votes %] →removed votes for [% terms.bug %] <a href="show_bug.cgi?id= - [%- detail.id FILTER url_quote %]"> + [%- detail.id FILTER uri %]"> [%- detail.id FILTER html %]</a> from [% detail.name FILTER html %]<br> [% END %] [% ELSE %] @@ -72,7 +72,7 @@ [% IF changes.too_many_total_votes.size %] [% FOREACH detail = changes.too_many_total_votes %] →removed votes for [% terms.bug %] <a href="show_bug.cgi?id= - [%- detail.id FILTER url_quote %]"> + [%- detail.id FILTER uri %]"> [%- detail.id FILTER html %]</a> from [% detail.name FILTER html %]<br> [% END %] [% ELSE %] diff --git a/extensions/Voting/template/en/default/hook/bug/edit-after_importance.html.tmpl b/extensions/Voting/template/en/default/hook/bug/edit-after_importance.html.tmpl index 606f981ee..fea82601a 100644 --- a/extensions/Voting/template/en/default/hook/bug/edit-after_importance.html.tmpl +++ b/extensions/Voting/template/en/default/hook/bug/edit-after_importance.html.tmpl @@ -26,7 +26,7 @@ [% IF bug.votes %] with <a href="page.cgi?id=voting/bug.html&bug_id= - [%- bug.id FILTER url_quote %]"> + [%- bug.id FILTER uri %]"> [%- bug.votes %] [% IF bug.votes == 1 %] vote @@ -35,7 +35,7 @@ [% END %]</a> [% END %] (<a href="page.cgi?id=voting/user.html&bug_id= - [%- bug.id FILTER url_quote %]#vote_ - [%- bug.id FILTER url_quote %]">vote</a>) + [%- bug.id FILTER uri %]#vote_ + [%- bug.id FILTER uri %]">vote</a>) </span> [% END %] diff --git a/extensions/Voting/template/en/default/pages/voting/bug.html.tmpl b/extensions/Voting/template/en/default/pages/voting/bug.html.tmpl index 03434a505..0aa7072b7 100644 --- a/extensions/Voting/template/en/default/pages/voting/bug.html.tmpl +++ b/extensions/Voting/template/en/default/pages/voting/bug.html.tmpl @@ -45,7 +45,7 @@ <tr> <td> <a href="page.cgi?id=voting/user.html&user_id= - [%- voter.id FILTER url_quote %]"> + [%- voter.id FILTER uri %]"> [% voter.login_name FILTER email FILTER html %] </a> </td> diff --git a/extensions/Voting/template/en/default/pages/voting/user.html.tmpl b/extensions/Voting/template/en/default/pages/voting/user.html.tmpl index 800079224..f2ac160f8 100644 --- a/extensions/Voting/template/en/default/pages/voting/user.html.tmpl +++ b/extensions/Voting/template/en/default/pages/voting/user.html.tmpl @@ -93,7 +93,7 @@ <tr> <th>[% product.name FILTER html %]</th> <td colspan="2" ><a href="buglist.cgi?bug_id= - [%- product.bug_ids.join(",") FILTER url_quote %]">([% terms.bug %] list)</a> + [%- product.bug_ids.join(",") FILTER uri %]">([% terms.bug %] list)</a> </td> <td> [% IF product.maxperbug < product.maxvotes AND @@ -149,7 +149,7 @@ [% IF canedit %] <input type="submit" value="Change My Votes" id="change"> or - <a href="buglist.cgi?bug_id=[% all_bug_ids.join(",") FILTER url_quote %]">view all + <a href="buglist.cgi?bug_id=[% all_bug_ids.join(",") FILTER uri %]">view all as [% terms.bug %] list</a> <br> <br> @@ -163,7 +163,7 @@ [% END %] and then click <b>Change My Votes</b>. [% ELSE %] - <a href="buglist.cgi?bug_id=[% all_bug_ids.join(",") FILTER url_quote %]">View all + <a href="buglist.cgi?bug_id=[% all_bug_ids.join(",") FILTER uri %]">View all as [% terms.bug %] list</a> [% END %] </form> |