From f80106b5aa44579d927790ba9f1a60bde259dd81 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Fri, 5 Jul 2019 20:15:38 -0700 Subject: [PATCH] use CGI::Simple->new() --- cgi/bugreport.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)'); -- 2.39.2