From 45e179d9393d24f88a22018d6f658f335a65cfea Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Wed, 15 Oct 2014 10:44:08 +0200 Subject: [PATCH] Fix that `type' is missing for installed ldap authentication backends refs #7163 --- library/Icinga/Application/WebInstaller.php | 1 + 1 file changed, 1 insertion(+) diff --git a/library/Icinga/Application/WebInstaller.php b/library/Icinga/Application/WebInstaller.php index d384e4f71..c4969daf5 100644 --- a/library/Icinga/Application/WebInstaller.php +++ b/library/Icinga/Application/WebInstaller.php @@ -161,6 +161,7 @@ class WebInstaller implements Installer if (isset($this->pageData['setup_ldap_resource'])) { $resourceConfig[$this->pageData['setup_ldap_resource']['name']] = array( + 'type' => $this->pageData['setup_ldap_resource']['type'], 'hostname' => $this->pageData['setup_ldap_resource']['hostname'], 'port' => $this->pageData['setup_ldap_resource']['port'], 'root_dn' => $this->pageData['setup_ldap_resource']['root_dn'],