function xmlrpc_message_cdata in Drupal 6
Same name and namespace in other branches
- 4 includes/xmlrpc.inc \xmlrpc_message_cdata()
- 5 includes/xmlrpc.inc \xmlrpc_message_cdata()
- 7 includes/xmlrpc.inc \xmlrpc_message_cdata()
1 string reference to 'xmlrpc_message_cdata'
- xmlrpc_message_parse in includes/
xmlrpc.inc - Parse an XML-RPC message. If parsing fails, the faultCode and faultString will be added to the message object.
File
- includes/
xmlrpc.inc, line 256 - Drupal XML-RPC library. Based on the IXR - The Incutio XML-RPC Library - (c) Incutio Ltd 2002-2005 Version 1.7 (beta) - Simon Willison, 23rd May 2005 Site: http://scripts.incutio.com/xmlrpc/ Manual: http://scripts.incutio.com/xmlrpc/manual.php This…
Code
function xmlrpc_message_cdata($parser, $cdata) {
$xmlrpc_message = xmlrpc_message_get();
$xmlrpc_message->current_tag_contents .= $cdata;
xmlrpc_message_set($xmlrpc_message);
}