Skip to content

Commit

Permalink
Fix exception "Undefined index: type" in the WebWizard's page logic
Browse files Browse the repository at this point in the history
refs #8275
  • Loading branch information
Johannes Meyer committed Jan 26, 2015
1 parent fb97e74 commit 0b73dbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/setup/library/Setup/WebWizard.php
Expand Up @@ -188,7 +188,7 @@ protected function getNewPage($requestedPage, Form $originPage)
if ($newPage->getName() === 'setup_db_resource') {
$prefData = $this->getPageData('setup_preferences_type');
$authData = $this->getPageData('setup_authentication_type');
$skip = $prefData['type'] !== 'db' && $authData['type'] !== 'db';
$skip = $prefData['store'] !== 'db' && $authData['type'] !== 'db';
} elseif ($newPage->getname() === 'setup_ldap_discovery') {
$authData = $this->getPageData('setup_authentication_type');
$skip = $authData['type'] !== 'ldap';
Expand Down

0 comments on commit 0b73dbd

Please sign in to comment.