]> source.dussan.org Git - nextcloud-server.git/commitdiff
move away from deprecated consts
authorArthur Schiwon <blizzz@owncloud.com>
Mon, 20 Apr 2015 09:22:11 +0000 (11:22 +0200)
committerArthur Schiwon <blizzz@owncloud.com>
Mon, 20 Apr 2015 09:22:11 +0000 (11:22 +0200)
apps/user_ldap/group_ldap.php

index 7695ba0638884d018701828bc1d7eea79d3144a5..8f56e01bf3dd2f55c3b9aae15f89de53f2411004 100644 (file)
@@ -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);
        }
 }