mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Bugfix: Session handling hadn't been initialized (#5493)
This commit is contained in:
parent
3e5f8ee70a
commit
32a8702bd7
1 changed files with 1 additions and 1 deletions
|
@ -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://")
|
||||
|
|
Loading…
Reference in a new issue