From 1f497506d5bf76eac8dd591550262e10b2f9aabb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Buclin?= Date: Mon, 27 Oct 2014 11:49:09 +0100 Subject: [PATCH] Bug 1087400: CGI 4.05 throws tons of "CGI::param called in list context" warnings r/a=glob --- Bugzilla/CGI.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index 18181f489c..0b8a486972 100644 --- a/Bugzilla/CGI.pm +++ b/Bugzilla/CGI.pm @@ -362,6 +362,7 @@ sub header { sub param { my $self = shift; + local $CGI::LIST_CONTEXT_WARN = 0; # When we are just requesting the value of a parameter... if (scalar(@_) == 1) { -- 2.47.2