diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-03-20 20:38:06 +0000 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-03-20 20:38:06 +0000 |
commit | 7c3da27bf6b0a6482e58766f0e15a012827ff130 (patch) | |
tree | 3439db2a7e7af167ade6e49a5a80c103cff17e5d | |
parent | ca595611f5d9c81a7c6437f4e013bb0ed01a0376 (diff) | |
download | nextcloud-server-7c3da27bf6b0a6482e58766f0e15a012827ff130.tar.gz nextcloud-server-7c3da27bf6b0a6482e58766f0e15a012827ff130.zip |
Fix duplicate ipauniqueid
-rw-r--r-- | apps/user_ldap/lib/access.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 70270a2523e..4d187bab8d5 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -1065,7 +1065,7 @@ class Access extends LDAPUtility { } //for now, supported attributes are entryUUID, nsuniqueid, objectGUID, ipaUniqueID - $testAttributes = array('entryuuid', 'nsuniqueid', 'objectguid', 'guid', 'ipauniqueid', 'ipauniqueid'); + $testAttributes = array('entryuuid', 'nsuniqueid', 'objectguid', 'guid', 'ipauniqueid'); foreach($testAttributes as $attribute) { $value = $this->readAttribute($dn, $attribute); |