diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2011-08-15 17:47:18 -0700 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2011-08-15 17:47:18 -0700 |
commit | 3a8142ae9f3cd14b6ca54c6db6f6f07fb9025fe8 (patch) | |
tree | 2242433ef67dfcc9229c744e8b1bcaf90697d39c /template/en/default/bug/create | |
parent | 1a34c347b8b4977293fb55f5b7be344a607a3d85 (diff) | |
download | bugs-3a8142ae9f3cd14b6ca54c6db6f6f07fb9025fe8.tar bugs-3a8142ae9f3cd14b6ca54c6db6f6f07fb9025fe8.tar.gz bugs-3a8142ae9f3cd14b6ca54c6db6f6f07fb9025fe8.tar.bz2 bugs-3a8142ae9f3cd14b6ca54c6db6f6f07fb9025fe8.tar.xz bugs-3a8142ae9f3cd14b6ca54c6db6f6f07fb9025fe8.zip |
Bug 460074: Make post_bug.cgi use should_set for array fields, so they
are undef in Bugzilla::Bug->create if not passed to post_bug. This fixes
a bug with the guided bug form creating bugs without any groups.
r=LpSolit, a=mkanat
Diffstat (limited to 'template/en/default/bug/create')
-rw-r--r-- | template/en/default/bug/create/create.html.tmpl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl index 8604f0839..ee19ab5d6 100644 --- a/template/en/default/bug/create/create.html.tmpl +++ b/template/en/default/bug/create/create.html.tmpl @@ -665,6 +665,7 @@ TUI_hide_default('attachment_text_field'); <br> <!-- Checkboxes --> + <input type="hidden" name="defined_groups" value="1"> [% FOREACH group = product.groups_available %] <input type="checkbox" id="group_[% group.id FILTER html %]" name="groups" value="[% group.name FILTER html %]" |