diff options
author | jocuri%softhome.net <> | 2004-10-20 05:11:34 +0200 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-10-20 05:11:34 +0200 |
commit | 7db6b82d113bb5a647255fce7075ffa7e794940e (patch) | |
tree | 99a4611cdb5316b4d913e0ee03890b083c89c254 /template/en/default/list | |
parent | c9df7549e4823924bf9c79668c4e9fd5bdd6b1d4 (diff) | |
download | bugzilla-7db6b82d113bb5a647255fce7075ffa7e794940e.tar.gz bugzilla-7db6b82d113bb5a647255fce7075ffa7e794940e.tar.xz |
Patch for bug 189073: Allow accept as a resolution when changing multiple bugs only if all bugs are opened; r=kiko, a=justdave.
Diffstat (limited to 'template/en/default/list')
-rw-r--r-- | template/en/default/list/edit-multiple.html.tmpl | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/template/en/default/list/edit-multiple.html.tmpl b/template/en/default/list/edit-multiple.html.tmpl index 638acbdcc..dec54e4e6 100644 --- a/template/en/default/list/edit-multiple.html.tmpl +++ b/template/en/default/list/edit-multiple.html.tmpl @@ -249,15 +249,16 @@ </label><br> [% END %] -[% knum = knum + 1 %] -<input id="knob-accept" type="radio" name="knob" value="accept"> -<label for="knob-accept"> - Accept [% terms.bugs %] (change status to <b>ASSIGNED</b>) -</label><br> - -[%# If all the bugs being changed are open, allow the user to close them. %] +[%# If all the bugs being changed are open, allow the user to accept them, + clear their resolution or resolve them. %] [% IF !bugstatuses.containsany(closedstates) %] [% knum = knum + 1 %] + <input id="knob-accept" type="radio" name="knob" value="accept"> + <label for="knob-accept"> + Accept [% terms.bugs %] (change status to <b>ASSIGNED</b>) + </label><br> + + [% knum = knum + 1 %] <input id="knob-clearresolution" type="radio" name="knob" value="clearresolution"> <label for="knob-clearresolution">Clear the resolution</label><br> |