]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Patch for bug 189073: Allow accept as a resolution when changing multiple bugs only...
authorjocuri%softhome.net <>
Wed, 20 Oct 2004 03:12:06 +0000 (03:12 +0000)
committerjocuri%softhome.net <>
Wed, 20 Oct 2004 03:12:06 +0000 (03:12 +0000)
template/en/default/list/edit-multiple.html.tmpl

index 1d72f4f511953b3b8cc569b89d74cbc68249c6d6..441177c3830a7cd6932f5464c955ca11d5b444cd 100644 (file)
   </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>