elkuku / EasyCreator

EasyCreator helps creating extensions for the Joomla! CMS
http://extensions.joomla.org/extensions/miscellaneous/development/5908
50 stars 23 forks source link

ERc: build-package: project-xml-file contains now Character Entity References #58

Open hgh-esn opened 6 years ago

hgh-esn commented 6 years ago

In my project-xml I have some html-code in the description-tag like this:

....
 <description>Text ....
 <![CDATA[
   <hr />
   <div align="center">
    <table border="0" width="90%">
       <tr>
          <td width="100%" colspan="2" style="font-size: 10pt;">
            <div>
....
 ]]>
</description>
....

After the package-building, the project-xml-file contains:

....
<description>Text .....

   &lt;hr /&gt;
   &lt;div align="center"&gt;
    &lt;table border="0" width="90%"&gt;
       &lt;tr&gt;
          &lt;td width="100%" colspan="2" style="font-size: 10pt;"&gt;
            &lt;div&gt;
....

</description>
....

The cdata-tag is complete missing and the html contains now # Character Entity References instead of >, <, "

Can you correct that?