combineFilterWithAnd recently moved to Access
This commit is contained in:
parent
48e426b589
commit
86809be638
|
@ -174,12 +174,12 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface {
|
|||
return array();
|
||||
}
|
||||
$seen[$dn] = 1;
|
||||
$filter = $this->combineFilterWithAnd(array(
|
||||
$filter = $this->access->combineFilterWithAnd(array(
|
||||
$this->access->connection->ldapGroupFilter,
|
||||
$this->access->connection->ldapGroupMemberAssocAttr.'='.$dn
|
||||
));
|
||||
$groups = $this->fetchListOfGroups($filter,
|
||||
array($this->access->connection->ldapGroupDisplayName, 'dn'));
|
||||
$groups = $this->access->fetchListOfGroups($filter,
|
||||
array($this->access->connection->ldapGroupDisplayName, 'dn'));
|
||||
if ($groups) {
|
||||
foreach ($groups as $groupobj) {
|
||||
$group_dn = $groupobj['dn'];
|
||||
|
|
Loading…
Reference in New Issue