diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2016-04-14 21:03:00 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2016-04-14 21:03:00 +0200 |
commit | 90d86a9744883ccc120a0a955ffade72990e1505 (patch) | |
tree | 07fd038fc41a2de0259f2f7c6a9de0d55e8a1e34 /enter_bug.cgi | |
parent | ae22da8710d00232d28b7c6b9093d2b7e33b0627 (diff) | |
download | bugzilla-90d86a9744883ccc120a0a955ffade72990e1505.tar.gz bugzilla-90d86a9744883ccc120a0a955ffade72990e1505.tar.xz |
Bug 1088022 - Bump min version to CGI 4.09
r=dkl
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-x | enter_bug.cgi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi index d6cc90764..4f0992df7 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -186,7 +186,7 @@ foreach my $field (@enter_bug_fields) { my $cf_value = $cgi->param($cf_name); if (defined $cf_value) { if ($field->type == FIELD_TYPE_MULTI_SELECT) { - $cf_value = [$cgi->param($cf_name)]; + $cf_value = [$cgi->multi_param($cf_name)]; } $default{$cf_name} = $vars->{$cf_name} = $cf_value; } @@ -270,7 +270,7 @@ else { $vars->{'estimated_time'} = formvalue('estimated_time'); $vars->{'see_also'} = formvalue('see_also'); - $vars->{'cc'} = join(', ', $cgi->param('cc')); + $vars->{'cc'} = join(', ', $cgi->multi_param('cc')); $vars->{'comment'} = formvalue('comment'); $vars->{'comment_is_private'} = formvalue('comment_is_private'); @@ -341,7 +341,7 @@ if ($picked_status and grep($_->name eq $picked_status, @statuses)) { $default{'bug_status'} = Bugzilla::Bug->default_bug_status(@statuses); } -my @groups = $cgi->param('groups'); +my @groups = $cgi->multi_param('groups'); if ($cloned_bug) { my @clone_groups = map { $_->name } @{ $cloned_bug->groups_in }; # It doesn't matter if there are duplicate names, since all we check |