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/branches/BUGZILLA-4_0-BRANCH@260722 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkanat%bugzilla.org
2010-07-13 01:03:13 +00:00
parent 85a6c4b6f3
commit 3c85c43924
2 changed files with 3 additions and 3 deletions

View File

@@ -1 +1 @@
7307
7308

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>