Do not use getForm() but getCurrentPage() to avoid page creation

refs #7163
This commit is contained in:
Johannes Meyer 2014-10-27 14:08:34 +01:00
parent 3206ded18c
commit e5512f586f
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class ModulePage extends Form
}
} else {
$wizard = $this->getCurrentWizard();
$wizardPage = $wizard->getForm();
$wizardPage = $wizard->getCurrentPage();
if (false === $wizard->isFinished() || $wizardPage->wasSent($wizardPage->getRequestData($request))) {
$wizard->handleRequest($request);