Subject: | CDATA blocks have extra > |
When I have the following XML:
<btn name="profile_manage" title="Manage Profile"><![CDATA[Manage Profile]]></btn>
<btn name="profile_save" title="Save"><![CDATA[Save]]></btn>
<btn name="tab_all_projects" title="All projects listed here"><![CDATA[All Projects]]></btn>
And parse it (first with XML::Simple, then directly) the content of these elements comes out as "Manage Profile>" "Save>" etc.
Reverting to XML::SAX 0.12 fixes this.
Thanks,
-miles