From: Michael Date: Sat, 23 Feb 2019 22:27:03 +0000 (+0000) Subject: Only check once X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ed54345ce1e1bd49829b8f968e89236bb54b9fc6;p=friendica.git Only check once --- diff --git a/src/Module/Install.php b/src/Module/Install.php index bfb988cac3..de19bc86ab 100644 --- a/src/Module/Install.php +++ b/src/Module/Install.php @@ -66,10 +66,6 @@ class Install extends BaseModule { $a = self::getApp(); - if (!$a->getMode()->isInstall()) { - Core\System::httpExit(403); - } - switch (self::$currentWizardStep) { case self::SYSTEM_CHECK: case self::DATABASE_CONFIG: @@ -121,10 +117,6 @@ class Install extends BaseModule { $a = self::getApp(); - if (!$a->getMode()->isInstall()) { - Core\System::httpExit(403); - } - $output = ''; $install_title = L10n::t('Friendica Communications Server - Setup');