Merge pull request #15747 from owncloud/ldap-remove-deprecated-const-usage-group
move away from deprecated consts
This commit is contained in:
commit
5063c1dfe0
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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue