Merge pull request #7823 from owncloud/fix_7796

Add FreeIPA UUID compatibility, fixes #7796
remotes/origin/ldap_group_count
blizzz 13 years ago
commit 3f95f9325f
  1. 4
      apps/user_ldap/lib/access.php

@ -1064,8 +1064,8 @@ class Access extends LDAPUtility {
return true;
}
//for now, supported attributes are entryUUID, nsuniqueid, objectGUID
$testAttributes = array('entryuuid', 'nsuniqueid', 'objectguid', 'guid');
//for now, supported attributes are entryUUID, nsuniqueid, objectGUID, ipaUniqueID
$testAttributes = array('entryuuid', 'nsuniqueid', 'objectguid', 'guid', 'ipauniqueid');
foreach($testAttributes as $attribute) {
$value = $this->readAttribute($dn, $attribute);

Loading…
Cancel
Save