mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-29 00:34:03 +02:00
Fix exception "Undefined index: type" in the WebWizard's page logic
refs #8275
This commit is contained in:
parent
fb97e74453
commit
0b73dbdd6d
@ -188,7 +188,7 @@ class WebWizard extends Wizard implements SetupWizard
|
||||
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';
|
||||
|
Loading…
x
Reference in New Issue
Block a user