diff options
author | bbaetz%student.usyd.edu.au <> | 2002-06-11 15:14:49 +0200 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-06-11 15:14:49 +0200 |
commit | ec700b1bfcff7f00a5dded2d37c9b023613ed2b9 (patch) | |
tree | 964de95a2ab73d8f899fde29247eb1f103ea0518 | |
parent | 9866e846e0f72c21abe768bf771addfa73752952 (diff) | |
download | bugzilla-ec700b1bfcff7f00a5dded2d37c9b023613ed2b9.tar.gz bugzilla-ec700b1bfcff7f00a5dded2d37c9b023613ed2b9.tar.xz |
Bug 150798 - Extra whitespace included in saved query links
r=mattyt x2
-rw-r--r-- | template/en/default/global/useful-links.html.tmpl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/template/en/default/global/useful-links.html.tmpl b/template/en/default/global/useful-links.html.tmpl index 6b548b4dc..9e2f3040c 100644 --- a/template/en/default/global/useful-links.html.tmpl +++ b/template/en/default/global/useful-links.html.tmpl @@ -98,16 +98,14 @@ <td colspan="3"> [% IF user.showmybugslink %] - <a href="buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=[% user.login FILTER url_quote %]&emailtype1=exact&emailassigned_to1=1&emailreporter1=1">My Bugs - </a> + <a href="buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=[% user.login FILTER url_quote %]&emailtype1=exact&emailassigned_to1=1&emailreporter1=1">My Bugs</a> [% print_pipe = 1 %] [% END %] [% FOREACH q = user.queries %] [% IF q.linkinfooter %] [% " | " IF print_pipe %] - <a href="buglist.cgi?cmdtype=runnamed&namedcmd=[% q.name FILTER url_quote %]">[% q.name FILTER html FILTER no_break %] - </a> + <a href="buglist.cgi?cmdtype=runnamed&namedcmd=[% q.name FILTER url_quote %]">[% q.name FILTER html FILTER no_break %]</a> [% print_pipe = 1 %] [% END %] [% END %] |