diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2010-07-23 00:46:02 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-07-23 00:46:02 +0200 |
commit | ddb5db354ac1b55ce99c9d0e977a2a63099f4c21 (patch) | |
tree | 644fe8ebb504af5d5e025ece6eb123a1094137c3 /template/en/default/admin/sanitycheck | |
parent | 1ccdf14572251c8fe39cf2065fd3ca16da01e1a3 (diff) | |
download | bugs-ddb5db354ac1b55ce99c9d0e977a2a63099f4c21.tar bugs-ddb5db354ac1b55ce99c9d0e977a2a63099f4c21.tar.gz bugs-ddb5db354ac1b55ce99c9d0e977a2a63099f4c21.tar.bz2 bugs-ddb5db354ac1b55ce99c9d0e977a2a63099f4c21.tar.xz bugs-ddb5db354ac1b55ce99c9d0e977a2a63099f4c21.zip |
Bug 398701: Replace |FILTER url_quote| by |FILTER uri|
r/a=mkanat
Diffstat (limited to 'template/en/default/admin/sanitycheck')
-rw-r--r-- | template/en/default/admin/sanitycheck/messages.html.tmpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/template/en/default/admin/sanitycheck/messages.html.tmpl b/template/en/default/admin/sanitycheck/messages.html.tmpl index 5c2b2feb1..af0f9e572 100644 --- a/template/en/default/admin/sanitycheck/messages.html.tmpl +++ b/template/en/default/admin/sanitycheck/messages.html.tmpl @@ -34,7 +34,7 @@ [% errortext FILTER html %]: [% INCLUDE bug_list badbugs = badbugs %] [% ELSIF san_tag == "bug_check_repair" %] - <a href="sanitycheck.cgi?[% param FILTER url_quote %]=1">[% text FILTER html %]</a>. + <a href="sanitycheck.cgi?[% param FILTER uri %]=1">[% text FILTER html %]</a>. [% ELSIF san_tag == "bug_check_creation_date" %] Checking for [% terms.bugs %] with no creation date (which makes them invisible). @@ -299,12 +299,12 @@ # which itself calls this template again, generating a recursion error. # I doubt having a tooltip with the bug status and summary is so # important here anyway, as you can click the "(as buglist)" link. %] - <a href="show_bug.cgi?id=[% bug_id FILTER url_quote %]">[% bug_id FILTER html %]</a> + <a href="show_bug.cgi?id=[% bug_id FILTER uri %]">[% bug_id FILTER html %]</a> [% ", " IF !loop.last %] [% END %] - (<a href="buglist.cgi?bug_id=[% badbugs.join(",") FILTER url_quote %]">as [% terms.bug %] list</a>). + (<a href="buglist.cgi?bug_id=[% badbugs.join(",") FILTER uri %]">as [% terms.bug %] list</a>). [% END %] [% BLOCK bug_link %] - <a href="show_bug.cgi?id=[% bug_id FILTER url_quote %]">[% terms.bug %] [%+ bug_id FILTER html %]</a> + <a href="show_bug.cgi?id=[% bug_id FILTER uri %]">[% terms.bug %] [%+ bug_id FILTER html %]</a> [% END %] |