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…
Reference in New Issue