Merge pull request #7823 from owncloud/fix_7796
Add FreeIPA UUID compatibility, fixes #7796
This commit is contained in:
commit
3f95f9325f
|
@ -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…
Reference in New Issue