diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2011-08-16 02:47:18 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2011-08-16 02:47:18 +0200 |
commit | 3a8142ae9f3cd14b6ca54c6db6f6f07fb9025fe8 (patch) | |
tree | 2242433ef67dfcc9229c744e8b1bcaf90697d39c /post_bug.cgi | |
parent | 1a34c347b8b4977293fb55f5b7be344a607a3d85 (diff) | |
download | bugzilla-3a8142ae9f3cd14b6ca54c6db6f6f07fb9025fe8.tar.gz bugzilla-3a8142ae9f3cd14b6ca54c6db6f6f07fb9025fe8.tar.xz |
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 'post_bug.cgi')
-rwxr-xr-x | post_bug.cgi | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/post_bug.cgi b/post_bug.cgi index 6d6ed746c..6ca46fb3c 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -153,14 +153,17 @@ my %bug_params; foreach my $field (@bug_fields) { $bug_params{$field} = $cgi->param($field); } -$bug_params{'cc'} = [$cgi->param('cc')]; -$bug_params{'groups'} = [$cgi->param('groups')]; -$bug_params{'comment'} = $comment; +foreach my $field (qw(cc groups)) { + next if !$cgi->should_set($field); + $bug_params{$field} = [$cgi->param($field)]; +} +$bug_params{'comment'} = $comment; my @multi_selects = grep {$_->type == FIELD_TYPE_MULTI_SELECT && $_->enter_bug} Bugzilla->active_custom_fields; foreach my $field (@multi_selects) { + next if !$cgi->should_set($field->name); $bug_params{$field->name} = [$cgi->param($field->name)]; } |