FollowUp #10086
authorPhilipp <admin@philipp.info>
Sat, 27 Mar 2021 21:42:11 +0000 (22:42 +0100)
committerPhilipp <admin@philipp.info>
Sat, 27 Mar 2021 21:42:11 +0000 (22:42 +0100)
src/Core/Installer.php

index de75aa3..ea67509 100644 (file)
@@ -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;
        }