diff options
author | bbaetz%student.usyd.edu.au <> | 2002-07-09 10:17:14 +0200 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-07-09 10:17:14 +0200 |
commit | cce2c9c109e147b448034a7d1398b228df5b9953 (patch) | |
tree | dbe9fc40de58532170911978f5b440605cd1126d /template/en/default | |
parent | 962353733fdb22a8d7c7edca882381d7ea2134d5 (diff) | |
download | bugzilla-cce2c9c109e147b448034a7d1398b228df5b9953.tar.gz bugzilla-cce2c9c109e147b448034a7d1398b228df5b9953.tar.xz |
Bug 151714 - user with no canconfirm permission should not get option to
mark bugs they reported as NEW
r=jouni, myk
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/bug/edit.html.tmpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index 83972baae..e0ecf2623 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -371,7 +371,7 @@ [% knum = 1 %] [% IF bug.bug_status == "UNCONFIRMED" && - (user.canedit || user.canconfirm) %] + user.canconfirm %] <input type="radio" name="knob" value="confirm"> Confirm bug (change status to <b>NEW</b>) <br> @@ -380,7 +380,7 @@ [% IF user.canedit %] [% IF bug.isopened %] - [% IF bug.bug_status != "ASSIGNED" %] + [% IF bug.bug_status != "ASSIGNED" && user.canconfirm %] <input type="radio" name="knob" value="accept"> Accept bug ( [% "confirm bug, " IF bug.isunconfirmed %]change @@ -424,7 +424,7 @@ }" value="[% bug.assigned_to_email FILTER html %]"> <br> - [% IF bug.isunconfirmed %] + [% IF bug.isunconfirmed && user.canconfirm %] <input type="checkbox" name="andconfirm"> and confirm bug (change status to <b>NEW</b>) <br> @@ -436,7 +436,7 @@ [% "and QA contact" IF useqacontact %] of selected component <br> - [% IF bug.isunconfirmed %] + [% IF bug.isunconfirmed && user.canconfirm %] <input type="checkbox" name="compconfirm"> and confirm bug (change status to <b>NEW</b>) <br> |