diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2014-10-27 11:50:32 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2014-10-27 11:50:32 +0100 |
commit | 0410aa4c4c5bddce26b982a2e066c4da94c60383 (patch) | |
tree | 28b7f868f2073a18d12cb1b6596c934d66271673 /Bugzilla | |
parent | 36e2c7438cf012fcd33f19e7ca887d10c30bb54c (diff) | |
download | bugzilla-0410aa4c4c5bddce26b982a2e066c4da94c60383.tar.gz bugzilla-0410aa4c4c5bddce26b982a2e066c4da94c60383.tar.xz |
Bug 1087400: CGI 4.05 throws tons of "CGI::param called in list context" warnings
r/a=glob
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/CGI.pm | 1 |
1 files changed, 1 insertions, 0 deletions
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) { |