Add XMLReader as requirement
The SabreDAV release in 9.0 requires XMLReader, while this is usually compiled in by default some distributions like Gentoo don't. Without this ownCloud gives a fatal 500 error instead of telling people to enable XMLReader. Fixes https://github.com/owncloud/core/issues/23003
This commit is contained in:
parent
afe3fdbf49
commit
642c38ffb2
1 changed files with 2 additions and 1 deletions
|
@ -726,7 +726,8 @@ class OC_Util {
|
|||
'classes' => array(
|
||||
'ZipArchive' => 'zip',
|
||||
'DOMDocument' => 'dom',
|
||||
'XMLWriter' => 'XMLWriter'
|
||||
'XMLWriter' => 'XMLWriter',
|
||||
'XMLReader' => 'XMLReader',
|
||||
),
|
||||
'functions' => [
|
||||
'xml_parser_create' => 'libxml',
|
||||
|
|
Loading…
Reference in a new issue