diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2015-04-20 11:22:11 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2015-04-20 11:22:11 +0200 |
commit | 460a78436f160591f88c131ed42c45ef646a27e1 (patch) | |
tree | 2f19076b2ed702a6bdb165429883df83f6076bf9 | |
parent | 930ae11f8e52e70640060eca5b69afdebe713c6b (diff) | |
download | nextcloud-server-460a78436f160591f88c131ed42c45ef646a27e1.tar.gz nextcloud-server-460a78436f160591f88c131ed42c45ef646a27e1.zip |
move away from deprecated consts
-rw-r--r-- | apps/user_ldap/group_ldap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index 7695ba06388..8f56e01bf3d 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -746,6 +746,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); } } |