diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2010-07-13 02:48:01 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-07-13 02:48:01 +0200 |
commit | e92d33036b76e1960083b65864125bc51c98b8ed (patch) | |
tree | 3542569e868c2d039830ec2b475d4a98186f0098 /template | |
parent | 47eb776b6c3b5e92bc13394440d99440cb2a4235 (diff) | |
download | bugzilla-e92d33036b76e1960083b65864125bc51c98b8ed.tar.gz bugzilla-e92d33036b76e1960083b65864125bc51c98b8ed.tar.xz |
Bug 578241: Use the same ID in enter_bug.cgi and show_bug.cgi for group checkboxes
r=reed a=LpSolit
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/create/create.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl index fdac893c0..d737e8391 100644 --- a/template/en/default/bug/create/create.html.tmpl +++ b/template/en/default/bug/create/create.html.tmpl @@ -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> |