diff options
author | lpsolit%gmail.com <> | 2007-10-08 06:18:13 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-10-08 06:18:13 +0200 |
commit | 1aec31a16bf92b1055129ff0697509df0e7663b3 (patch) | |
tree | b6cf997e2fca511cbceafc40bed0016491c969d2 /template/en/default/admin/components | |
parent | 393cb39fdfefff8bba165d9076723bf7048198ef (diff) | |
download | bugzilla-1aec31a16bf92b1055129ff0697509df0e7663b3.tar.gz bugzilla-1aec31a16bf92b1055129ff0697509df0e7663b3.tar.xz |
Bug 264785: config.rdf needs XML filtering of output to generate valid HTML (Template-Toolkit 2.15 and older do not escape all reserved characters correctly) - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'template/en/default/admin/components')
-rw-r--r-- | template/en/default/admin/components/confirm-delete.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/admin/components/confirm-delete.html.tmpl b/template/en/default/admin/components/confirm-delete.html.tmpl index bd48ff882..53bba1e35 100644 --- a/template/en/default/admin/components/confirm-delete.html.tmpl +++ b/template/en/default/admin/components/confirm-delete.html.tmpl @@ -74,7 +74,7 @@ from '[% product.name FILTER html %]' product <tr> <td valign="top">Product Milestone URL:</td> <td valign="top"> - <a href="[% product.milestone_url FILTER uri %]"> + <a href="[% product.milestone_url FILTER html %]"> [% product.milestone_url FILTER html %] </a> </td> |