summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/classifications/select.html.tmpl
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2004-12-27 18:58:29 +0100
committerjocuri%softhome.net <>2004-12-27 18:58:29 +0100
commit77685016dc35f13c83d11a43a0c2a22d6df91af4 (patch)
tree2773a902d2fa6237c8b9d42e66ee321527e82b30 /template/en/default/admin/classifications/select.html.tmpl
parentccab8debf48788d950021bad75da93753f1a42c1 (diff)
downloadbugzilla-77685016dc35f13c83d11a43a0c2a22d6df91af4.tar.gz
bugzilla-77685016dc35f13c83d11a43a0c2a22d6df91af4.tar.xz
Patch for bug 275939: Classification templates use wrong filtering in URLs; patch by GavinS <bugzilla@chimpychompy.org>, r=vladd, a=justdave.
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 0c0d3d392..3cfa3fcaa 100644
--- a/template/en/default/admin/classifications/select.html.tmpl
+++ b/template/en/default/admin/classifications/select.html.tmpl
@@ -35,7 +35,7 @@
[% FOREACH cl = classifications %]
<tr>
- <td valign="top"><a href="editclassifications.cgi?action=edit&amp;classification=[% cl.classification FILTER html %]"><b>[% cl.classification FILTER html %]</b></a></td>
+ <td valign="top"><a href="editclassifications.cgi?action=edit&amp;classification=[% cl.classification FILTER url_quote %]"><b>[% cl.classification FILTER html %]</b></a></td>
<td valign="top">
[% IF cl.description %]
[% cl.description %]
@@ -46,14 +46,14 @@
[% IF (cl.id == 1) %]
<td valign="top">[% cl.total FILTER html %]</td>
[% ELSE %]
- <td valign="top"><a href="editclassifications.cgi?action=reclassify&amp;classification=[% cl.classification FILTER html %]">reclassify ([% cl.total FILTER html %])</a></td>
+ <td valign="top"><a href="editclassifications.cgi?action=reclassify&amp;classification=[% cl.classification FILTER url_quote %]">reclassify ([% cl.total 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.classification FILTER html %]">delete</a></td>
+ <td valign="top"><a href="editclassifications.cgi?action=del&amp;classification=[% cl.classification FILTER url_quote %]">delete</a></td>
[% END %]
</tr>
[% END %]