diff options
author | jocuri%softhome.net <> | 2004-12-14 10:35:28 +0100 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-12-14 10:35:28 +0100 |
commit | 61cad277af23c2ab75f82f8d47f7f886cf3d8090 (patch) | |
tree | 7c56acae9d84c3076c4b7048327dc4e74a4f88b2 /template | |
parent | dce1dd615c71bcf608f597f9fda8d7ed6fd1f541 (diff) | |
download | bugzilla-61cad277af23c2ab75f82f8d47f7f886cf3d8090.tar.gz bugzilla-61cad277af23c2ab75f82f8d47f7f886cf3d8090.tar.xz |
Patch for bug 274456: Fix the use of <label> tags and remove problems with the 'mark as new' checkbox; patch by Frédéric Buclin <LpSolit@netscape.net>, r=vladd, a=justdave.
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/knob.html.tmpl | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/template/en/default/bug/knob.html.tmpl b/template/en/default/bug/knob.html.tmpl index 589751ed2..cc8ca32b5 100644 --- a/template/en/default/bug/knob.html.tmpl +++ b/template/en/default/bug/knob.html.tmpl @@ -34,8 +34,7 @@ [% knum = 1 %] - [% IF bug.bug_status == "UNCONFIRMED" && - bug.user.canconfirm %] + [% IF bug.isunconfirmed && bug.user.canconfirm %] <input type="radio" id="knob-confirm" name="knob" value="confirm"> <label for="knob-confirm"> Confirm [% terms.bug %] (change status to <b>NEW</b>) @@ -110,6 +109,7 @@ <input type="checkbox" id="andconfirm" name="andconfirm"> <label for="andconfirm"> and confirm [% terms.bug %] (change status to <b>NEW</b>) + </label> <br> [% END %] [% knum = knum + 1 %] @@ -119,15 +119,15 @@ Reassign [% terms.bug %] to owner [% " and QA contact" IF Param('useqacontact') %] of selected component - <br> - [% IF bug.isunconfirmed && bug.user.canconfirm %] - <input type="checkbox" id="compconfirm" name="compconfirm"> - <label for="compconfirm"> - and confirm [% terms.bug %] (change status to <b>NEW</b>) - </label> - <br> - [% END %] </label> + <br> + [% IF bug.isunconfirmed && bug.user.canconfirm %] + <input type="checkbox" id="compconfirm" name="compconfirm"> + <label for="compconfirm"> + and confirm [% terms.bug %] (change status to <b>NEW</b>) + </label> + <br> + [% END %] [% knum = knum + 1 %] [% ELSE %] [% IF bug.resolution != "MOVED" || |