Commit 7db6b82d authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 189073: Allow accept as a resolution when changing multiple bugs…

Patch for bug 189073: Allow accept as a resolution when changing multiple bugs only if all bugs are opened; r=kiko, a=justdave.
parent c9df7549
...@@ -249,14 +249,15 @@ ...@@ -249,14 +249,15 @@
</label><br> </label><br>
[% END %] [% END %]
[% knum = knum + 1 %] [%# If all the bugs being changed are open, allow the user to accept them,
<input id="knob-accept" type="radio" name="knob" value="accept"> clear their resolution or resolve them. %]
<label for="knob-accept"> [% 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>) Accept [% terms.bugs %] (change status to <b>ASSIGNED</b>)
</label><br> </label><br>
[%# If all the bugs being changed are open, allow the user to close them. %]
[% IF !bugstatuses.containsany(closedstates) %]
[% knum = knum + 1 %] [% knum = knum + 1 %]
<input id="knob-clearresolution" type="radio" name="knob" value="clearresolution"> <input id="knob-clearresolution" type="radio" name="knob" value="clearresolution">
<label for="knob-clearresolution">Clear the resolution</label><br> <label for="knob-clearresolution">Clear the resolution</label><br>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment