diff options
Diffstat (limited to 'apps/admin_dependencies_chk/settings.php')
-rwxr-xr-x | apps/admin_dependencies_chk/settings.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/admin_dependencies_chk/settings.php b/apps/admin_dependencies_chk/settings.php index 2eb20414292..11253ef1c4c 100755 --- a/apps/admin_dependencies_chk/settings.php +++ b/apps/admin_dependencies_chk/settings.php @@ -69,6 +69,12 @@ $modules[] =array( 'message'=> $l->t('The php-ctype module is needed validate data.')); $modules[] =array( + 'status' => class_exists('DOMDocument') ? 'ok' : 'error', + 'part'=> 'php-xml', + 'modules'=> array('core'), + 'message'=> $l->t('The php-xml module is needed to share files with webdav.')); + +$modules[] =array( 'status' => ini_get('allow_url_fopen') == '1' ? 'ok' : 'error', 'part'=> 'allow_url_fopen', 'modules'=> array('core'), |