summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin McCorkell <rmccorkell@karoshi.org.uk>2014-03-20 20:38:06 +0000
committerRobin McCorkell <rmccorkell@karoshi.org.uk>2014-03-20 20:38:06 +0000
commit7c3da27bf6b0a6482e58766f0e15a012827ff130 (patch)
tree3439db2a7e7af167ade6e49a5a80c103cff17e5d
parentca595611f5d9c81a7c6437f4e013bb0ed01a0376 (diff)
downloadnextcloud-server-7c3da27bf6b0a6482e58766f0e15a012827ff130.tar.gz
nextcloud-server-7c3da27bf6b0a6482e58766f0e15a012827ff130.zip
Fix duplicate ipauniqueid
-rw-r--r--apps/user_ldap/lib/access.php2
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);