summaryrefslogtreecommitdiffstats
path: root/app.psgi
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-03-04 01:38:10 +0100
committerDylan William Hardison <dylan@hardison.net>2018-03-10 21:54:38 +0100
commitf57a87a51e4d3e39a6fc552b963621625b2db899 (patch)
tree227a6d6aa6b489ba4eeb0c9eebe1a2e538f08b2a /app.psgi
parent44c80b15fab8390b13ec32e45bb03145a8769654 (diff)
downloadbugzilla-f57a87a51e4d3e39a6fc552b963621625b2db899.tar.gz
bugzilla-f57a87a51e4d3e39a6fc552b963621625b2db899.tar.xz
make sure init_page() is called inside a CGI environment
Diffstat (limited to 'app.psgi')
-rw-r--r--app.psgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.psgi b/app.psgi
index 48b730167..1da6d4351 100644
--- a/app.psgi
+++ b/app.psgi
@@ -30,12 +30,12 @@ BEGIN {
}
# This loads most of our modules.
+use Bugzilla::PSGI qw(compile_cgi);
use Bugzilla::Logging;
use Bugzilla ();
use Bugzilla::Constants ();
use Bugzilla::BugMail ();
use Bugzilla::CGI ();
-use Bugzilla::PSGI qw(compile_cgi);
use Bugzilla::Extension ();
use Bugzilla::Install::Requirements ();
use Bugzilla::Util ();