summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Bugzilla/Quantum/CGI.pm1
-rwxr-xr-xbugzilla.pl1
2 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Quantum/CGI.pm b/Bugzilla/Quantum/CGI.pm
index c36ed9654..16c733686 100644
--- a/Bugzilla/Quantum/CGI.pm
+++ b/Bugzilla/Quantum/CGI.pm
@@ -113,6 +113,7 @@ sub _ENV {
$cgi_query->append($req->url->query);
return (
+ %ENV,
CONTENT_LENGTH => $content_length || 0,
CONTENT_TYPE => $headers->content_type || '',
GATEWAY_INTERFACE => 'CGI/1.1',
diff --git a/bugzilla.pl b/bugzilla.pl
index 769aa1195..41a4d8e6a 100755
--- a/bugzilla.pl
+++ b/bugzilla.pl
@@ -15,7 +15,6 @@ BEGIN {
use Mojolicious::Commands;
$ENV{MOJO_LISTEN} ||= $ENV{PORT} ? "http://*:$ENV{PORT}" : "http://*:3001";
-$ENV{LOG4PERL_STDERR_DISABLE} = 1;
# Start command line interface for application
Mojolicious::Commands->start_app('Bugzilla::Quantum');