Active
Project:
OpenCalais
Version:
6.x-3.5
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
28 Sep 2011 at 16:08 UTC
Updated:
28 Sep 2011 at 16:08 UTC
when I tag a new item "CDATA" and "XML" are created. I looked into the code and found
protected function build_xml_content($title, $body, $date) {
$req = "";
$req .= "";
$req .= "$date";
$req .= "";
$req .= "";
return $req;
}
when removed the CDATA tag from this function, everything worked ok and I received the same results I received using http://viewer.opencalais.com/
Do we really need this tag as we strip tags before building the xml for the webserver?