From 1c96b47439427c0f203f0409c8402f4f1b86b53d Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 1 Apr 2017 22:41:30 +0200 Subject: [PATCH] Fix installer --- Admin/Installer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Admin/Installer.php b/Admin/Installer.php index c2aea6a..99c6791 100644 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -39,6 +39,6 @@ class Installer extends InstallerAbstract */ public static function install(string $path, DatabasePool $dbPool, InfoManager $info) { - parent::install($path, $dbPool, $info); + parent::install(__DIR__ . '/..', $dbPool, $info); } }