From 4f332dac6844c41a929f5119a464ed5d7e9ef24c Mon Sep 17 00:00:00 2001 From: "bzrmirror%bugzilla.org" Date: Mon, 27 Oct 2014 11:01:38 +0000 Subject: [PATCH] Bug 1087400: CGI 4.05 throws tons of "CGI::param called in list context" warnings r/a=glob git-svn-id: svn://10.0.0.236/trunk@265641 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/.bzrrev | 2 +- mozilla/webtools/bugzilla/.gitrev | 2 +- mozilla/webtools/bugzilla/Bugzilla/CGI.pm | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/mozilla/webtools/bugzilla/.bzrrev b/mozilla/webtools/bugzilla/.bzrrev index aa99d46e135..3382e681b29 100644 --- a/mozilla/webtools/bugzilla/.bzrrev +++ b/mozilla/webtools/bugzilla/.bzrrev @@ -1 +1 @@ -9186 \ No newline at end of file +9187 \ No newline at end of file diff --git a/mozilla/webtools/bugzilla/.gitrev b/mozilla/webtools/bugzilla/.gitrev index b3375eef786..a619a71b133 100644 --- a/mozilla/webtools/bugzilla/.gitrev +++ b/mozilla/webtools/bugzilla/.gitrev @@ -1 +1 @@ -36e2c7438cf012fcd33f19e7ca887d10c30bb54c \ No newline at end of file +0410aa4c4c5bddce26b982a2e066c4da94c60383 \ No newline at end of file diff --git a/mozilla/webtools/bugzilla/Bugzilla/CGI.pm b/mozilla/webtools/bugzilla/Bugzilla/CGI.pm index 18181f489ca..0b8a4869727 100644 --- a/mozilla/webtools/bugzilla/Bugzilla/CGI.pm +++ b/mozilla/webtools/bugzilla/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) {