diff options
author | gerv%gerv.net <> | 2004-02-04 09:12:41 +0100 |
---|---|---|
committer | gerv%gerv.net <> | 2004-02-04 09:12:41 +0100 |
commit | 545a42a0c5479198e4400ff45afae4271e79d671 (patch) | |
tree | 01c53af877ae1d524dc303c00fc28f8f7ff2eaba /template/en/default/reports | |
parent | a5bedc9a64c867ceb44065d0c7b188016c7b33fc (diff) | |
download | bugzilla-545a42a0c5479198e4400ff45afae4271e79d671.tar.gz bugzilla-545a42a0c5479198e4400ff45afae4271e79d671.tar.xz |
Bug 232830 - use url_quote instead of html filtering to make sure we can delete queries which contain a "+". Patch by gerv; r,a=myk.
Diffstat (limited to 'template/en/default/reports')
-rw-r--r-- | template/en/default/reports/create-chart.html.tmpl | 6 | ||||
-rw-r--r-- | template/en/default/reports/edit-series.html.tmpl | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/template/en/default/reports/create-chart.html.tmpl b/template/en/default/reports/create-chart.html.tmpl index 0879d8ec6..c91fea132 100644 --- a/template/en/default/reports/create-chart.html.tmpl +++ b/template/en/default/reports/create-chart.html.tmpl @@ -207,9 +207,9 @@ function subcatSelected() { [% series.series_id %]">Edit</a> | [% END %] <a href="buglist.cgi?cmdtype=dorem&namedcmd= - [% series.category FILTER html %]%20/%20 - [% series.subcategory FILTER html %]%20/%20 - [% series.name FILTER html -%]&series_id= + [% series.category FILTER url_quote %]%20/%20 + [% series.subcategory FILTER url_quote %]%20/%20 + [% series.name FILTER url_quote -%]&series_id= [% series.series_id %]&remaction=runseries">Run Search</a> </td> </tr> diff --git a/template/en/default/reports/edit-series.html.tmpl b/template/en/default/reports/edit-series.html.tmpl index a8177e0e0..011ae1aa4 100644 --- a/template/en/default/reports/edit-series.html.tmpl +++ b/template/en/default/reports/edit-series.html.tmpl @@ -54,9 +54,9 @@ <a href="query.cgi?[% default.query FILTER html%]">View series search parameters</a> | <a href="buglist.cgi?cmdtype=dorem&namedcmd= - [% default.category FILTER html %]- - [% default.subcategory FILTER html %]- - [% default.name FILTER html %]&remaction=runseries&series_id= + [% default.category FILTER url_quote %]- + [% default.subcategory FILTER url_quote %]- + [% default.name FILTER url_quote %]&remaction=runseries&series_id= [% default.series_id %]">Run series search</a> </p> |