diff options
author | jocuri%softhome.net <> | 2004-04-10 23:42:37 +0200 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-04-10 23:42:37 +0200 |
commit | 5f6285dd22095bd6d04e772a89db69d249f8cbb4 (patch) | |
tree | a87398bec19f5566c5f48cfd9b10d2bd6769e163 /template | |
parent | a7df23cc4a40c3b38e77a26b9ec5cde3e20919e9 (diff) | |
download | bugzilla-5f6285dd22095bd6d04e772a89db69d249f8cbb4.tar.gz bugzilla-5f6285dd22095bd6d04e772a89db69d249f8cbb4.tar.xz |
Patch for bug 239826: support closing resolved bugs when changing multiple bugs; patch by Albert Ting <altlst@sonic.net>; r=kiko, a=myk.
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/list/edit-multiple.html.tmpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/template/en/default/list/edit-multiple.html.tmpl b/template/en/default/list/edit-multiple.html.tmpl index d3c23ce66..f03ea09e1 100644 --- a/template/en/default/list/edit-multiple.html.tmpl +++ b/template/en/default/list/edit-multiple.html.tmpl @@ -289,7 +289,8 @@ [% knum = knum + 1 %] <input id="knob-verify" type="radio" name="knob" value="verify"> <label for="knob-verify">Mark [% terms.bugs %] as <b>VERIFIED</b></label><br> - [% ELSIF bugstatuses.contains('VERIFIED') %] + [% END %] + [% IF bugstatuses.contains('RESOLVED') || bugstatuses.contains('VERIFIED') %] [% knum = knum + 1 %] <input id="knob-close" type="radio" name="knob" value="close"> <label for="knob-close">Mark [% terms.bugs %] as <b>CLOSED</b></label><br> |