diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-11-20 13:13:14 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-11-20 13:13:14 +0100 |
commit | 9a1673c79d7f57c76d1e85acc0cd0e05a57f4467 (patch) | |
tree | 8269a9688c174958dd6d69f45cf3fccf5b7e51c4 /lib/private/util.php | |
parent | 1c8f9564a470095134f0134f5d59fc0eece66f0e (diff) | |
download | nextcloud-server-9a1673c79d7f57c76d1e85acc0cd0e05a57f4467.tar.gz nextcloud-server-9a1673c79d7f57c76d1e85acc0cd0e05a57f4467.zip |
Check for XMLWriter class
This is not installed by default in all cases and will break the DAV features of ownCloud. Lot's of reports such as https://github.com/owncloud/ios-issues/issues/167#issuecomment-63798507
Diffstat (limited to 'lib/private/util.php')
-rw-r--r-- | lib/private/util.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/util.php b/lib/private/util.php index bee0a579192..4190f0aa3d8 100644 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -562,6 +562,7 @@ class OC_Util { 'classes' => array( 'ZipArchive' => 'zip', 'DOMDocument' => 'dom', + 'XMLWriter' => 'XMLWriter' ), 'functions' => array( 'xml_parser_create' => 'libxml', |