From cadb376f5d5b12171b2dbd3f27e4f8d179259964 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 1763316..6814497 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); } }