function xmlrpc_message_cdata
Handles character data for XML parsing in xmlrpc_message_parse().
1 string reference to 'xmlrpc_message_cdata'
- xmlrpc_message_parse in includes/
xmlrpc.inc - Parses an XML-RPC message.
File
-
includes/
xmlrpc.inc, line 294
Code
function xmlrpc_message_cdata($parser, $cdata) {
$xmlrpc_message = xmlrpc_message_get();
$xmlrpc_message->current_tag_contents .= $cdata;
xmlrpc_message_set($xmlrpc_message);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.