From: Don Armstrong Date: Sat, 6 Jul 2019 03:15:38 +0000 (-0700) Subject: use CGI::Simple->new() X-Git-Url: https://git.donarmstrong.com/?p=debbugs.git;a=commitdiff_plain;h=f80106b5aa44579d927790ba9f1a60bde259dd81 use CGI::Simple->new() --- diff --git a/cgi/bugreport.cgi b/cgi/bugreport.cgi index ad35fd5..088f43b 100755 --- a/cgi/bugreport.cgi +++ b/cgi/bugreport.cgi @@ -66,7 +66,7 @@ if (defined $config{database}) { } use CGI::Simple; -my $q = new CGI::Simple; +my $q = CGI::Simple->new(); # STDOUT should be using the utf8 io layer binmode(STDOUT,':raw:encoding(UTF-8)');