From d6432cd8810af9ea870a5ec7dc1baf17873605db Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Fri, 9 Oct 2015 03:53:22 +0200 Subject: [PATCH] LdapUserGroupBackend: Fix invalid query column initialization, again I've mistakenly reverted a change from Aaron Collins that would have prevented this issue from occuring. fixes #10318 --- .../Icinga/Authentication/UserGroup/LdapUserGroupBackend.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php b/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php index 2a737d535..65187dcd4 100644 --- a/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php +++ b/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php @@ -409,7 +409,7 @@ class LdapUserGroupBackend extends LdapRepository implements UserGroupBackendInt 'created_at' => $createdAtAttribute, 'last_modified' => $lastModifiedAttribute ); - return array('group' => $columns, 'group_membership' => $columns); + return array($this->groupClass => $columns, $this->groupClass => $columns); } /**