diff options
author | Simon Green <sgreen+mozilla@redhat.com> | 2012-10-11 08:32:26 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2012-10-11 08:32:26 +0200 |
commit | 8dc5c9bbd7484c59cec8884435a80bc16ef428e2 (patch) | |
tree | 5b8e83bb59832fa112afa5c5cfabf7879155c1cd /template/en | |
parent | 2ee94066c3716564631bb1b02bc889357d0d06dd (diff) | |
download | bugzilla-8dc5c9bbd7484c59cec8884435a80bc16ef428e2.tar.gz bugzilla-8dc5c9bbd7484c59cec8884435a80bc16ef428e2.tar.xz |
Bug 798994: Fix incorrect double escaping when displaying saved queries URLs
r=glob, a=LpSolit
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 91640fe4a..faf4105a7 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -1828,7 +1828,7 @@ [% FOREACH q = Bugzilla.user.queries %] [% IF q.name == namedcmd %] - or <a href="query.cgi?[% q.url FILTER uri %]">edit</a> + or <a href="query.cgi?[% q.url FILTER html %]">edit</a> [% END %] [% END %] |