Fix providing install

This commit is contained in:
Dennis Eichhorn 2017-11-18 16:52:34 +01:00
parent 7fe79b39ea
commit 634c1e33b7

View File

@ -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);
}
}