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 --- Bugzilla/Chart.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Bugzilla/Chart.pm') diff --git a/Bugzilla/Chart.pm b/Bugzilla/Chart.pm index d0a1312ad..f8d34fe6b 100644 --- a/Bugzilla/Chart.pm +++ b/Bugzilla/Chart.pm @@ -57,10 +57,10 @@ sub init { # &select0=1&select3=1... # &cumulate=1&datefrom=2002-02-03&dateto=2002-04-04&ctype=html... # >=1&labelgt=Grand+Total - foreach my $param ($cgi->param()) { + foreach my $param ($cgi->multi_param()) { # Store all the lines if ($param =~ /^line(\d+)$/a) { - foreach my $series_id ($cgi->param($param)) { + foreach my $series_id ($cgi->multi_param($param)) { detaint_natural($series_id) || ThrowCodeError("invalid_series_id"); my $series = new Bugzilla::Series($series_id); -- cgit v1.2.3-24-g4f1b