summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap
diff options
context:
space:
mode:
authorRoeland Douma <rullzer@users.noreply.github.com>2016-05-17 16:06:44 +0200
committerThomas Müller <DeepDiver1975@users.noreply.github.com>2016-05-17 16:06:44 +0200
commit5c9103287f7ed8f2d69dd179b7eb160c1b1a65fd (patch)
tree50913dfb0dfd0c1a4036685021a29fbe8c2036a6 /apps/user_ldap
parent90a290afd8415a8a89d72d5b4cb07988d29d7037 (diff)
downloadnextcloud-server-5c9103287f7ed8f2d69dd179b7eb160c1b1a65fd.tar.gz
nextcloud-server-5c9103287f7ed8f2d69dd179b7eb160c1b1a65fd.zip
Group fixup (#24621)
* Move used OC_Group_xx to \OC\Group * Add (deprecated) legacy wrapper in legacy, OC_Group_xx * Replace deprecated use of OC_Group_xx with \OC\Group\xx
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/group_ldap.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php
index eba39ca50f7..ff8197fb43a 100644
--- a/apps/user_ldap/group_ldap.php
+++ b/apps/user_ldap/group_ldap.php
@@ -894,6 +894,6 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface {
* compared with OC_USER_BACKEND_CREATE_USER etc.
*/
public function implementsActions($actions) {
- return (bool)(\OC_Group_Backend::COUNT_USERS & $actions);
+ return (bool)(\OC\Group\Backend::COUNT_USERS & $actions);
}
}