Bug 578241: Use the same ID in enter_bug.cgi and show_bug.cgi for group checkboxes

r=reed a=LpSolit


git-svn-id: svn://10.0.0.236/trunk@260722 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkanat%bugzilla.org 2010-07-13 01:03:13 +00:00
parent 5886523d89
commit 407dc7e4ac
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
7332
7333

View File

@ -676,11 +676,11 @@ TUI_hide_default('expert_fields');
<!-- Checkboxes -->
[% FOREACH group = product.groups_available %]
<input type="checkbox" id="groups_[% group.id FILTER html %]"
<input type="checkbox" id="group_[% group.id FILTER html %]"
name="groups" value="[% group.name FILTER html %]"
[% ' checked="checked"' IF default.groups.contains(group.name)
OR group.is_default %]>
<label for="groups_[% group.id FILTER html %]">
<label for="group_[% group.id FILTER html %]">
[%- group.description FILTER html_light %]</label><br>
[% END %]
</td>