]> source.dussan.org Git - nextcloud-server.git/commitdiff
Add php-xml as dependency for core fix oc-364
authorBrice Maron <brice@bmaron.net>
Sun, 6 May 2012 21:38:35 +0000 (21:38 +0000)
committerBrice Maron <brice@bmaron.net>
Sun, 6 May 2012 21:38:35 +0000 (21:38 +0000)
apps/admin_dependencies_chk/settings.php

index 2eb20414292b110f49858ccd062c2f9cf6396c76..11253ef1c4c2b0c805f77c81e0167bb998a085c2 100755 (executable)
@@ -68,6 +68,12 @@ $modules[] =array(
        'modules'=> array('core'),
        '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',