mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-20 20:34:25 +02:00
Fix that the ModulePage cant find modules when being asked for
refs #7163
This commit is contained in:
parent
98acc24869
commit
dd6b045183
@ -33,6 +33,7 @@ class ModulePage extends Form
|
|||||||
public function setPageData(array $pageData)
|
public function setPageData(array $pageData)
|
||||||
{
|
{
|
||||||
$this->pageData = $pageData;
|
$this->pageData = $pageData;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function handleRequest(Request $request = null)
|
public function handleRequest(Request $request = null)
|
||||||
|
@ -326,7 +326,7 @@ class WebSetup extends Wizard implements SetupWizard
|
|||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
foreach ($this->getPage('setup_modules')->getWizards() as $wizard) {
|
foreach ($this->getPage('setup_modules')->setPageData($this->getPageData())->getWizards() as $wizard) {
|
||||||
if ($wizard->isFinished()) {
|
if ($wizard->isFinished()) {
|
||||||
$installer->addSteps($wizard->getInstaller()->getSteps());
|
$installer->addSteps($wizard->getInstaller()->getSteps());
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user