diff options
author | Brice Maron <brice@bmaron.net> | 2011-11-25 23:43:24 +0100 |
---|---|---|
committer | Brice Maron <brice@bmaron.net> | 2011-11-25 23:43:24 +0100 |
commit | 1d312cf070d809ab1b09b978dfa9d918ffe2c253 (patch) | |
tree | d3449217337cfe8238f6e59b69df678618047cf6 /apps/admin_dependencies_chk | |
parent | 53ff85e2ad631b03b8f1ee788d0019be9a8e8aa1 (diff) | |
download | nextcloud-server-1d312cf070d809ab1b09b978dfa9d918ffe2c253.tar.gz nextcloud-server-1d312cf070d809ab1b09b978dfa9d918ffe2c253.zip |
Correct ldap check in dependencies_chk app
Diffstat (limited to 'apps/admin_dependencies_chk')
-rw-r--r-- | apps/admin_dependencies_chk/settings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/admin_dependencies_chk/settings.php b/apps/admin_dependencies_chk/settings.php index de2f97aa79d..34028056dbe 100644 --- a/apps/admin_dependencies_chk/settings.php +++ b/apps/admin_dependencies_chk/settings.php @@ -51,7 +51,7 @@ $modules[] =array( 'message'=> $l->t('The program mp3info is useful to discover ID3 tags of your music files')); $modules[] =array( - 'status' => OC_Helper::canExecute("ldap_bind") ? 'ok' : 'error', + 'status' => function_exists("ldap_bind") ? 'ok' : 'error', 'part'=> 'php-ldap', 'modules'=> array('user_ldap'), 'message'=> $l->t('The php-ldap module is needed connect to your ldap server')); |