diff options
author | Byron Jones <bjones@mozilla.com> | 2012-09-10 09:14:46 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2012-09-10 09:14:46 +0200 |
commit | 3c44df8126d53937d0b8d53a96533f5c8cd01b44 (patch) | |
tree | 66de1e09a00fdaebbf326654df0112609751ce12 | |
parent | af8672e40adef493b19e88592535dce686f94f18 (diff) | |
download | bugzilla-3c44df8126d53937d0b8d53a96533f5c8cd01b44.tar.gz bugzilla-3c44df8126d53937d0b8d53a96533f5c8cd01b44.tar.xz |
Bug 789489: remove double-slashes from bugmail urls
-rw-r--r-- | extensions/BMO/template/en/default/email/bugmail.html.tmpl | 8 | ||||
-rw-r--r-- | template/en/default/email/bugmail.html.tmpl | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/extensions/BMO/template/en/default/email/bugmail.html.tmpl b/extensions/BMO/template/en/default/email/bugmail.html.tmpl index 9a1c71172..9fbefa02b 100644 --- a/extensions/BMO/template/en/default/email/bugmail.html.tmpl +++ b/extensions/BMO/template/en/default/email/bugmail.html.tmpl @@ -42,8 +42,8 @@ <div id="noreply"> Do not reply to this email. You can add comments to this [% terms.bug %] at [%# using the bug_link filter here causes a weird template error %] - <a href="[% urlbase FILTER html %]/show_bug.cgi?id=[% bug.id FILTER none %]"> - [% urlbase FILTER html %]/show_bug.cgi?id=[% bug.id FILTER none %]</a> + <a href="[% urlbase FILTER html %]show_bug.cgi?id=[% bug.id FILTER none %]"> + [% urlbase FILTER html %]show_bug.cgi?id=[% bug.id FILTER none %]</a> </div> <br> [% END %] @@ -81,7 +81,7 @@ <ul> [% FOREACH ref = referenced_bugs %] <li> - [<a href="[% urlbase FILTER html %]/show_bug.cgi?id=[% ref.id FILTER none %]"> + [<a href="[% urlbase FILTER html %]show_bug.cgi?id=[% ref.id FILTER none %]"> [% terms.Bug %] [% ref.id FILTER none %]</a>] [% ref.short_desc FILTER html %] </li> [% END %] @@ -168,7 +168,7 @@ [% IF change.blocker %] [% "${terms.Bug} ${bug.id}" FILTER bug_link(bug, full_url => 1) FILTER none %] depends on - <a href="[% urlbase FILTER html %]/show_bug.cgi?id=[% change.blocker.id FILTER none %]"> + <a href="[% urlbase FILTER html %]show_bug.cgi?id=[% change.blocker.id FILTER none %]"> [% terms.Bug %] [% change.blocker.id FILTER none %]</a>, which changed state.<br> [% ELSE %] diff --git a/template/en/default/email/bugmail.html.tmpl b/template/en/default/email/bugmail.html.tmpl index 3d1c291a2..88c935d87 100644 --- a/template/en/default/email/bugmail.html.tmpl +++ b/template/en/default/email/bugmail.html.tmpl @@ -48,7 +48,7 @@ <ul> [% FOREACH ref = referenced_bugs %] <li> - [<a href="[% urlbase FILTER html %]/show_bug.cgi?id=[% ref.id FILTER none %]"> + [<a href="[% urlbase FILTER html %]show_bug.cgi?id=[% ref.id FILTER none %]"> [% terms.Bug %] [% ref.id FILTER none %]</a>] [% ref.short_desc FILTER html %] </li> [% END %] |