mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-30 09:14:08 +02:00
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
This commit is contained in:
parent
883608b09b
commit
d6432cd881
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user