Skip to content

Commit

Permalink
Do not use getForm() but getCurrentPage() to avoid page creation
Browse files Browse the repository at this point in the history
refs #7163
  • Loading branch information
Johannes Meyer committed Oct 29, 2014
1 parent 3206ded commit e5512f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/forms/Setup/ModulePage.php
Expand Up @@ -47,7 +47,7 @@ public function handleRequest(Request $request = null)
}
} else {
$wizard = $this->getCurrentWizard();
$wizardPage = $wizard->getForm();
$wizardPage = $wizard->getCurrentPage();

if (false === $wizard->isFinished() || $wizardPage->wasSent($wizardPage->getRequestData($request))) {
$wizard->handleRequest($request);
Expand Down

0 comments on commit e5512f5

Please sign in to comment.