diff options
author | lpsolit%gmail.com <> | 2007-09-10 19:53:32 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-09-10 19:53:32 +0200 |
commit | 88669f11e3073ec190ec844f56b18528e180faf3 (patch) | |
tree | 4d682baa984795c0f1359aa71a219514c601b433 /template | |
parent | 419f1be5151bd8d19a5bb82c5b4b1d668045a41b (diff) | |
download | bugzilla-88669f11e3073ec190ec844f56b18528e180faf3.tar.gz bugzilla-88669f11e3073ec190ec844f56b18528e180faf3.tar.xz |
Bug 134474: The mass-change form in buglist.cgi offers too many groups - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wurblzap a=LpSolit
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/list/edit-multiple.html.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/list/edit-multiple.html.tmpl b/template/en/default/list/edit-multiple.html.tmpl index 91d4bb852..f19410ab8 100644 --- a/template/en/default/list/edit-multiple.html.tmpl +++ b/template/en/default/list/edit-multiple.html.tmpl @@ -256,7 +256,7 @@ [% IF groups.size > 0 %] - <b>Groupset:</b><br> + <b>Groups:</b><br> <table border="1"> <tr> <th>Don't<br>change<br>this group<br>restriction</th> @@ -273,7 +273,7 @@ <td align="center"> <input type="radio" name="bit-[% group.id %]" value="0"> </td> - [% IF group.isactive %] + [% IF group.is_active %] <td align="center"> <input type="radio" name="bit-[% group.id %]" value="1"> </td> @@ -283,7 +283,7 @@ [% END %] <td> - [% SET inactive = !group.isactive %] + [% SET inactive = !group.is_active %] [% group.description FILTER html_light FILTER inactive(inactive) %] </td> |