From 0410aa4c4c5bddce26b982a2e066c4da94c60383 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Mon, 27 Oct 2014 11:50:32 +0100 Subject: 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 18181f489..0b8a48697 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) { -- cgit v1.2.3-24-g4f1b