Bugfix: Session handling hadn't been initialized (#5493)

This commit is contained in:
Michael Vogel 2018-07-25 16:25:40 +02:00 committed by Hypolite Petovan
parent 3e5f8ee70a
commit 32a8702bd7
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ if ($a->isMaxProcessesReached() || $a->isMaxLoadReached()) {
System::httpExit(503, ['title' => 'Error 503 - Service Temporarily Unavailable', 'description' => 'System is currently overloaded. Please try again later.']);
}
if ($a->isInstallMode()) {
if (!$a->isInstallMode()) {
if (Config::get('system', 'force_ssl') && ($a->get_scheme() == "http")
&& (intval(Config::get('system', 'ssl_policy')) == SSL_POLICY_FULL)
&& (substr(System::baseUrl(), 0, 8) == "https://")