From 90d86a9744883ccc120a0a955ffade72990e1505 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Thu, 14 Apr 2016 21:03:00 +0200 Subject: Bug 1088022 - Bump min version to CGI 4.09 r=dkl --- editproducts.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'editproducts.cgi') diff --git a/editproducts.cgi b/editproducts.cgi index 5f7434772..942e2073c 100755 --- a/editproducts.cgi +++ b/editproducts.cgi @@ -178,7 +178,7 @@ if ($action eq 'new') { $dbh->bz_start_transaction(); my $product = Bugzilla::Product->create(\%product_create_params); - my @initial_cc = $cgi->param('initialcc'); + my @initial_cc = $cgi->multi_param('initialcc'); my %component_create_params = ( product => $product, name => trim($cgi->param('component') || ''), @@ -342,7 +342,7 @@ if ($action eq 'updategroupcontrols') { my @now_na = (); my @now_mandatory = (); - foreach my $f ($cgi->param()) { + foreach my $f ($cgi->multi_param()) { if ($f =~ /^membercontrol_(\d+)$/a) { my $id = $1; if ($cgi->param($f) == CONTROLMAPNA) { -- cgit v1.2.3-24-g4f1b