Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorBrice Maron <brice@bmaron.net>2012-05-07 01:38:35 +0400
committerBrice Maron <brice@bmaron.net>2012-05-07 01:38:35 +0400
commitfe8b10a9224ac7dc1c819c4aca93c27f0d7bba0b (patch)
tree2b5268665f12d3e6a5ffdc32a10e51adb9f4338f /apps
parentd2b0de614eb3bbcdb2eae90929af48a69777f49c (diff)
Add php-xml as dependency for core fix oc-364
Diffstat (limited to 'apps')
-rwxr-xr-xapps/admin_dependencies_chk/settings.php6
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'),