summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/classifications/select.html.tmpl
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2010-07-23 00:46:02 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2010-07-23 00:46:02 +0200
commitddb5db354ac1b55ce99c9d0e977a2a63099f4c21 (patch)
tree644fe8ebb504af5d5e025ece6eb123a1094137c3 /template/en/default/admin/classifications/select.html.tmpl
parent1ccdf14572251c8fe39cf2065fd3ca16da01e1a3 (diff)
downloadbugzilla-ddb5db354ac1b55ce99c9d0e977a2a63099f4c21.tar.gz
bugzilla-ddb5db354ac1b55ce99c9d0e977a2a63099f4c21.tar.xz
Bug 398701: Replace |FILTER url_quote| by |FILTER uri|
r/a=mkanat
Diffstat (limited to 'template/en/default/admin/classifications/select.html.tmpl')
-rw-r--r--template/en/default/admin/classifications/select.html.tmpl6
1 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/admin/classifications/select.html.tmpl b/template/en/default/admin/classifications/select.html.tmpl
index d6b352d02..bc78cbb6e 100644
--- a/template/en/default/admin/classifications/select.html.tmpl
+++ b/template/en/default/admin/classifications/select.html.tmpl
@@ -33,7 +33,7 @@
[% FOREACH cl = classifications %]
<tr>
- <td valign="top"><a href="editclassifications.cgi?action=edit&amp;classification=[% cl.name FILTER url_quote %]"><b>[% cl.name FILTER html %]</b></a></td>
+ <td valign="top"><a href="editclassifications.cgi?action=edit&amp;classification=[% cl.name FILTER uri %]"><b>[% cl.name FILTER html %]</b></a></td>
<td valign="top">
[% IF cl.description %]
[% cl.description FILTER html_light %]
@@ -45,14 +45,14 @@
[% IF (cl.id == 1) %]
<td valign="top">[% cl.product_count FILTER html %]</td>
[% ELSE %]
- <td valign="top"><a href="editclassifications.cgi?action=reclassify&amp;classification=[% cl.name FILTER url_quote %]">reclassify ([% cl.product_count FILTER html %])</a></td>
+ <td valign="top"><a href="editclassifications.cgi?action=reclassify&amp;classification=[% cl.name FILTER uri %]">reclassify ([% cl.product_count FILTER html %])</a></td>
[% END %]
[%# don't allow user to delete the default id. %]
[% IF (cl.id == 1) %]
<td valign="top">&nbsp;</td>
[% ELSE %]
- <td valign="top"><a href="editclassifications.cgi?action=del&amp;classification=[% cl.name FILTER url_quote %]">delete</a></td>
+ <td valign="top"><a href="editclassifications.cgi?action=del&amp;classification=[% cl.name FILTER uri %]">delete</a></td>
[% END %]
</tr>
[% END %]