From ee51cfb046e15d6df610f53a93aa5870245adb9e 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 3100eee..795467d 100644 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -38,6 +38,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); } }