]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 578241: Use the same ID in enter_bug.cgi and show_bug.cgi for group checkboxes
authorFrédéric Buclin <LpSolit@gmail.com>
Tue, 13 Jul 2010 00:50:17 +0000 (02:50 +0200)
committerFrédéric Buclin <LpSolit@gmail.com>
Tue, 13 Jul 2010 00:50:17 +0000 (02:50 +0200)
r=reed a=LpSolit

template/en/default/bug/create/create.html.tmpl

index fdac893c0740a7485a64cc210aee52ce2fdadb39..d737e8391b18895ebbec24fc62efedd87e5b18cf 100644 (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>