From: Eric Wong Date: Wed, 30 Apr 2014 00:19:48 +0000 (+0000) Subject: cgi: disable warnings for CGI::NOSTICKY X-Git-Tag: v1.0.0~1176 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=1ccbf841e93fdb569e1944901bc5d27cd9e8bbc7;p=public-inbox.git cgi: disable warnings for CGI::NOSTICKY We probably know what we're doing, here... --- diff --git a/public-inbox.cgi b/public-inbox.cgi index 557d4923..b63223f5 100755 --- a/public-inbox.cgi +++ b/public-inbox.cgi @@ -21,6 +21,7 @@ BEGIN { # TODO: detect and reload config as needed if ($ENV{MOD_PERL}) { require CGI; + no warnings; $CGI::NOSTICKY = 1; CGI->compile; }