Wizard: Issue a partial validation only if desired for a certain page
fixes #9306
This commit is contained in:
parent
9c82a24083
commit
e795665421
|
@ -287,8 +287,10 @@ class Wizard
|
|||
$this->setCurrentPage($this->getNewPage($requestedPage, $page));
|
||||
$page->getResponse()->redirectAndExit($page->getRedirectUrl());
|
||||
}
|
||||
} else {
|
||||
} elseif ($page->getValidatePartial()) {
|
||||
$page->isValidPartial($requestData);
|
||||
} else {
|
||||
$page->populate($requestData);
|
||||
}
|
||||
} elseif (($pageData = $this->getPageData($page->getName())) !== null) {
|
||||
$page->populate($pageData);
|
||||
|
|
Loading…
Reference in New Issue