mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Back port fixes from #7899 to 2.x
Fix XmlView failing when return => domdocument is used.
This commit is contained in:
parent
c6d9911b9c
commit
4de92123fa
2 changed files with 5 additions and 2 deletions
|
@ -107,7 +107,7 @@ class XmlViewTest extends CakeTestCase {
|
|||
$Controller = new Controller($Request, $Response);
|
||||
$data = array(
|
||||
'_serialize' => array('tags'),
|
||||
'_xmlOptions' => array('format' => 'attributes'),
|
||||
'_xmlOptions' => array('format' => 'attributes', 'return' => 'domdocument'),
|
||||
'tags' => array(
|
||||
'tag' => array(
|
||||
array(
|
||||
|
@ -126,7 +126,7 @@ class XmlViewTest extends CakeTestCase {
|
|||
$View = new XmlView($Controller);
|
||||
$result = $View->render();
|
||||
|
||||
$expected = Xml::build(array('response' => array('tags' => $data['tags'])), $data['_xmlOptions'])->asXML();
|
||||
$expected = Xml::build(array('response' => array('tags' => $data['tags'])), $data['_xmlOptions'])->saveXML();
|
||||
$this->assertSame($expected, $result);
|
||||
}
|
||||
|
||||
|
|
|
@ -142,6 +142,9 @@ class XmlView extends View {
|
|||
$options['pretty'] = true;
|
||||
}
|
||||
|
||||
if (isset($options['return']) && strtolower($options['return']) === 'domdocument') {
|
||||
return Xml::fromArray($data, $options)->saveXML();
|
||||
}
|
||||
return Xml::fromArray($data, $options)->asXML();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue