diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-04-25 13:03:08 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-04-25 13:03:08 +0200 |
commit | 685faad5ca437895e035cfe9583e1978e6ddedba (patch) | |
tree | cde0040efe7624e6080383977c6d7368cebe0e00 /apps | |
parent | b1d646640accb94d962b3085d5bf38b8e6852300 (diff) | |
download | nextcloud-server-685faad5ca437895e035cfe9583e1978e6ddedba.tar.gz nextcloud-server-685faad5ca437895e035cfe9583e1978e6ddedba.zip |
fix method name due to changes in master
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/user_ldap/lib/Group_LDAP.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/Group_LDAP.php b/apps/user_ldap/lib/Group_LDAP.php index 17b64dbedcf..5a209a3317e 100644 --- a/apps/user_ldap/lib/Group_LDAP.php +++ b/apps/user_ldap/lib/Group_LDAP.php @@ -385,7 +385,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 []; } |