From e5512f586fac2ad4650ae11ea9fb857cd7e948b1 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Mon, 27 Oct 2014 14:08:34 +0100 Subject: [PATCH] Do not use getForm() but getCurrentPage() to avoid page creation refs #7163 --- application/forms/Setup/ModulePage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/forms/Setup/ModulePage.php b/application/forms/Setup/ModulePage.php index 70b5864c7..38c7b1528 100644 --- a/application/forms/Setup/ModulePage.php +++ b/application/forms/Setup/ModulePage.php @@ -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);