diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-04-11 23:21:04 -0500 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-04-12 10:10:07 -0500 |
commit | 229d17e13bd2cbaf055c57dcf82922cd03d6edb8 (patch) | |
tree | f503e4cd56f987453438ed60d3d7a5c30c626026 /apps/user_ldap/lib/Group_LDAP.php | |
parent | dccb8928a11fd572337d8b6ff5987cb411172276 (diff) | |
download | nextcloud-server-229d17e13bd2cbaf055c57dcf82922cd03d6edb8.tar.gz nextcloud-server-229d17e13bd2cbaf055c57dcf82922cd03d6edb8.zip |
Change LDAP method names
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/user_ldap/lib/Group_LDAP.php')
-rw-r--r-- | apps/user_ldap/lib/Group_LDAP.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/user_ldap/lib/Group_LDAP.php b/apps/user_ldap/lib/Group_LDAP.php index f1ea831e485..b6013e77766 100644 --- a/apps/user_ldap/lib/Group_LDAP.php +++ b/apps/user_ldap/lib/Group_LDAP.php @@ -388,7 +388,7 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface { $limit, $offset ); - return $this->access->ownCloudUserNames($users); + return $this->access->nextcloudUserNames($users); } catch (\Exception $e) { return array(); } @@ -541,7 +541,7 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface { $groups = array_merge($groups, $this->cachedGroupsByMember[$uid]); } else { $groupsByMember = array_values($this->getGroupsByMember($uid)); - $groupsByMember = $this->access->ownCloudGroupNames($groupsByMember); + $groupsByMember = $this->access->nextcloudGroupNames($groupsByMember); $this->cachedGroupsByMember[$uid] = $groupsByMember; $groups = array_merge($groups, $groupsByMember); } @@ -804,7 +804,7 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface { array($this->access->connection->ldapGroupDisplayName, 'dn'), $limit, $offset); - $ldap_groups = $this->access->ownCloudGroupNames($ldap_groups); + $ldap_groups = $this->access->nextcloudGroupNames($ldap_groups); $this->access->connection->writeToCache($cacheKey, $ldap_groups); return $ldap_groups; |