From de95ef821f24d08c629ac764c7524970f968d70c Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Sun, 4 Mar 2018 14:40:31 -0500 Subject: In PSGI mode, make sure CGI::Compile is loaded early --- app.psgi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'app.psgi') diff --git a/app.psgi b/app.psgi index 101a85a83..4425b3e0c 100644 --- a/app.psgi +++ b/app.psgi @@ -29,7 +29,8 @@ BEGIN { *lib::import = sub { }; } -# This loads most of our modules. +# it is very important for CGI::Compile to be loaded first. +use CGI::Compile; use Bugzilla::PSGI qw(compile_cgi); use Bugzilla::Logging; use Bugzilla (); -- cgit v1.2.3-24-g4f1b