Merge pull request #15747 from owncloud/ldap-remove-deprecated-const-usage-group

move away from deprecated consts
This commit is contained in:
Joas Schilling 2015-04-20 13:12:41 +02:00
commit 5063c1dfe0

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