diff options
author | David Lawrence <dlawrence@mozilla.com> | 2011-05-19 00:00:48 +0200 |
---|---|---|
committer | David Lawrence <dlawrence@mozilla.com> | 2011-05-19 00:00:48 +0200 |
commit | b3247a8197d6b7ee7f5e157d39cd28eb97690f90 (patch) | |
tree | 134a146b2a7c0264946de8ee818f788fd54df3e0 /template/en | |
parent | 32a5f4482c53f5ec544b80de33ef48794973d532 (diff) | |
download | bugzilla-b3247a8197d6b7ee7f5e157d39cd28eb97690f90.tar.gz bugzilla-b3247a8197d6b7ee7f5e157d39cd28eb97690f90.tar.xz |
Bug 658056 - Improper HTML on show_bug.cgi page when user is logged out
r/a=LpSolit
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/bug/edit.html.tmpl | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index f64d589c9..ab150dd31 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -1110,13 +1110,19 @@ [%# For logged-out users %] [% ELSE %] - <table><tr><td><fieldset> - <legend>Note</legend> - You need to - <a href="show_bug.cgi?id= - [%- bug.bug_id %]&GoAheadAndLogIn=1">log in</a> - before you can comment on or make changes to this [% terms.bug %]. - </fieldset></table><tr></td> + <table> + <tr> + <td> + <fieldset> + <legend>Note</legend> + You need to + <a href="show_bug.cgi?id= + [%- bug.bug_id %]&GoAheadAndLogIn=1">log in</a> + before you can comment on or make changes to this [% terms.bug %]. + </fieldset> + </td> + </tr> + </table> [% END %] </div> [% END %] |