From: Philipp Date: Sat, 27 Mar 2021 21:42:11 +0000 (+0100) Subject: FollowUp #10086 X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=26bd1bb26d6d5a7f073b94459c2ec12a8a340a17;p=friendica.git FollowUp #10086 --- diff --git a/src/Core/Installer.php b/src/Core/Installer.php index de75aa374f..ea67509751 100644 --- a/src/Core/Installer.php +++ b/src/Core/Installer.php @@ -133,9 +133,9 @@ class Installer $returnVal = false; } - if (!$this->checkHtAccess($baseurl)) { - $returnVal = false; - } + /// @TODO This check should not block installations because of containerization issues + /// @see https://github.com/friendica/docker/issues/134 + $this->checkHtAccess($baseurl); return $returnVal; }