diff options
author | lpsolit%gmail.com <> | 2006-10-03 08:20:00 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-10-03 08:20:00 +0200 |
commit | 8158a81ec57503131c46b2758f48e00cf1d128f9 (patch) | |
tree | 177386c38bedb9db0aff98df541238fa4974b28c /template/en/default/list | |
parent | 875ec235470318578182308e1c22ea472c64b20d (diff) | |
download | bugzilla-8158a81ec57503131c46b2758f48e00cf1d128f9.tar.gz bugzilla-8158a81ec57503131c46b2758f48e00cf1d128f9.tar.xz |
Bug 355158: Bad filtering of bug list names - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=myk
Diffstat (limited to 'template/en/default/list')
-rw-r--r-- | template/en/default/list/table.html.tmpl | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/template/en/default/list/table.html.tmpl b/template/en/default/list/table.html.tmpl index 0387adafb..b025cd14a 100644 --- a/template/en/default/list/table.html.tmpl +++ b/template/en/default/list/table.html.tmpl @@ -63,8 +63,6 @@ } %] -[% qorder = order FILTER url_quote IF order %] - [% PROCESS bug/time.html.tmpl %] [%############################################################################%] @@ -94,7 +92,7 @@ <a href="buglist.cgi? [% urlquerypart FILTER html %]&order=bugs.bug_id [%-#%]&query_based_on= - [% defaultsavename OR searchname FILTER html %]">ID</a> + [% defaultsavename OR searchname FILTER url_quote %]">ID</a> [% END %] </th> @@ -139,10 +137,10 @@ [% column.sortalias = column.name %] [% END %] <a href="buglist.cgi?[% urlquerypart FILTER html %]&order= - [% column.sortalias FILTER url_quote FILTER html %] - [% ",$qorder" FILTER html IF order %] + [% column.sortalias FILTER url_quote %] + [% ",$order" FILTER url_quote IF order %] [%-#%]&query_based_on= - [% defaultsavename OR searchname FILTER html %]"> + [% defaultsavename OR searchname FILTER url_quote %]"> [%- abbrev.$id.title || field_descs.$id || column.title -%]</a> [% END %] </th> |