diff options
author | mkanat%bugzilla.org <> | 2008-11-30 03:20:17 +0100 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2008-11-30 03:20:17 +0100 |
commit | cb5c8d29df60005316e1e357a758fa08d1c07905 (patch) | |
tree | c8dd2f02da731d05b44ba9602ed3fde3cfb2c7c8 /template | |
parent | 894abc8a902615c294bc2b1708a5135df2500321 (diff) | |
download | bugzilla-cb5c8d29df60005316e1e357a758fa08d1c07905.tar.gz bugzilla-cb5c8d29df60005316e1e357a758fa08d1c07905.tar.xz |
Caught by justdave: comment box <table> was unclosed if you weren't logged in.
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/edit.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index b00f1d3c3..ff621173f 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -241,9 +241,9 @@ <tr> <td id="comment_status_commit"> <!-- The table keeps the commit button aligned with the box. --> - <table><tr><td> <a name="add_comment"></a> [% IF user.id %] + <table><tr><td> <label for="comment" accesskey="c"><b>Additional <u>C</u>omments</b></label>: [% IF Param("insidergroup") && user.in_group(Param("insidergroup")) %] <input type="checkbox" name="commentprivacy" value="1" @@ -277,7 +277,7 @@ </td> </tr> </table> - </td></tr></table> + </td></tr></table> [% ELSE %] <fieldset> <legend>Note</legend> |