From fe8b10a9224ac7dc1c819c4aca93c27f0d7bba0b Mon Sep 17 00:00:00 2001
From: Brice Maron <brice@bmaron.net>
Date: Sun, 6 May 2012 21:38:35 +0000
Subject: [PATCH] Add php-xml as dependency for core fix oc-364

---
 apps/admin_dependencies_chk/settings.php | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/apps/admin_dependencies_chk/settings.php b/apps/admin_dependencies_chk/settings.php
index 2eb2041429..11253ef1c4 100755
--- a/apps/admin_dependencies_chk/settings.php
+++ b/apps/admin_dependencies_chk/settings.php
@@ -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',
-- 
GitLab