ZF-4536: Encoding of Zend_XmlRpc_Fault XML is hard coded
Description
Around line 290 in Zend/XmlRpc/Fault.php:
// Build response XML
$dom = new DOMDocument('1.0', 'ISO-8859-1');
Should read:
// Build response XML
$dom = new DOMDocument('1.0', $this->getEncoding());
Otherwise encoding of fault XML is always ISO-8859-1, overwriting default charset of UTF-8 and making calls to setEncoding() useless.
Comments
Posted by Thomas Weidner (thomas) on 2008-11-07T01:12:25.000+0000
Fixed with r12357.
Posted by Wil Sinclair (wil) on 2008-11-13T14:10:07.000+0000
Changing issues in preparation for the 1.7.0 release.