From 6bf96344bb67880ecb2e7c2db81fa72251f2a3f9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Buclin?= Date: Tue, 14 Apr 2015 01:45:37 +0200 Subject: [PATCH] Bug 1087400: CGI 4.05 throws tons of "CGI::param called in list context" warnings r=glob a=justdave --- Bugzilla/CGI.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index 4dd223a310..221bd165f3 100644 --- a/Bugzilla/CGI.pm +++ b/Bugzilla/CGI.pm @@ -329,6 +329,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