Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRobin McCorkell <rmccorkell@karoshi.org.uk>2014-03-21 00:38:06 +0400
committerRobin McCorkell <rmccorkell@karoshi.org.uk>2014-03-21 00:38:06 +0400
commit7c3da27bf6b0a6482e58766f0e15a012827ff130 (patch)
tree3439db2a7e7af167ade6e49a5a80c103cff17e5d /apps
parentca595611f5d9c81a7c6437f4e013bb0ed01a0376 (diff)
Fix duplicate ipauniqueid
Diffstat (limited to 'apps')
-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);