Pass info manager to providing

This commit is contained in:
Dennis Eichhorn 2017-11-17 20:56:29 +01:00
parent 8db115529b
commit c7c4ef3a1e

View File

@ -543,7 +543,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, null);
$class::install($this->modulePath, $this->app->dbPool, $this->loadInfo($from));
}
}