Details
Description
DOMWriter doesn't properly output ']]>' symbols collation.
For example, following well-fomed XML
<?xml version="1.0" ?>
<test>]]></test>
after parsing and writing to file by DOMPrint example produces non well-formed
XML:
<?xml version="1.0" encoding="UTF-8" standalone="no" ?><test>]]></test>
']]>' occurence must not appears in element node in accordance with XML
specification