move away from deprecated consts

remotes/origin/poc-doctrine-migrations
Arthur Schiwon 2015-04-20 11:22:11 +07:00
parent 930ae11f8e
commit 460a78436f
1 changed files with 1 additions and 1 deletions

@ -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);
}
}