Merge pull request #18872 from owncloud/settings_users_ldap

Check if app is enabled instead of if class exists
This commit is contained in:
Morris Jobke 2015-09-07 13:35:54 +02:00
commit a35bc974bb
1 changed files with 1 additions and 1 deletions

View File

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