mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Check if app is enabled instead of if class exists
This commit is contained in:
parent
4c5afe85da
commit
c97147c99a
1 changed files with 1 additions and 1 deletions
|
|
@ -41,7 +41,7 @@ $groupManager = \OC_Group::getManager();
|
|||
// Set the sort option: SORT_USERCOUNT or SORT_GROUPNAME
|
||||
$sortGroupsBy = \OC\Group\MetaData::SORT_USERCOUNT;
|
||||
|
||||
if (class_exists('\OCA\user_ldap\GROUP_LDAP')) {
|
||||
if (\OC_App::isEnabled('user_ldap')) {
|
||||
$isLDAPUsed =
|
||||
$groupManager->isBackendUsed('\OCA\user_ldap\GROUP_LDAP')
|
||||
|| $groupManager->isBackendUsed('\OCA\user_ldap\Group_Proxy');
|
||||
|
|
|
|||
Loading…
Reference in a new issue