]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Installer.php
Merge pull request #10096 from annando/parseurl-photos
[friendica.git] / 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;
        }