]> git.mxchange.org Git - friendica.git/commitdiff
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 de75aa374f1333a1f4c51a1c265c3f69dceffcc5..ea675097515e622473705743f9b671eaac398895 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;
        }