This commit is contained in:
Philipp Holzer 2021-03-27 22:42:11 +01:00
parent 3327e6d979
commit 26bd1bb26d
No known key found for this signature in database
GPG Key ID: 9A28B7D4FF5667BD
1 changed files with 3 additions and 3 deletions

View File

@ -133,9 +133,9 @@ class Installer
$returnVal = false; $returnVal = false;
} }
if (!$this->checkHtAccess($baseurl)) { /// @TODO This check should not block installations because of containerization issues
$returnVal = false; /// @see https://github.com/friendica/docker/issues/134
} $this->checkHtAccess($baseurl);
return $returnVal; return $returnVal;
} }