From 634c1e33b7210b550ee64fafdc000c9819570f97 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 18 Nov 2017 16:52:34 +0100 Subject: [PATCH] Fix providing install --- Module/ModuleManager.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Module/ModuleManager.php b/Module/ModuleManager.php index 6848c970b..cc5793f16 100644 --- a/Module/ModuleManager.php +++ b/Module/ModuleManager.php @@ -542,8 +542,7 @@ class ModuleManager { if (file_exists($this->modulePath . '/' . $from . '/Admin/Install/' . $for . '.php')) { $class = '\\Modules\\' . $from . '\\Admin\\Install\\' . $for; - /** @var $class InstallerAbstract */ - $class::install($this->modulePath, $this->app->dbPool, $this->loadInfo($from)); + $class::install($this->modulePath, $this->app->dbPool); } }