function xmlrpc_error_msg in Drupal 6
Same name and namespace in other branches
- 4 includes/xmlrpc.inc \xmlrpc_error_msg()
- 5 includes/xmlrpc.inc \xmlrpc_error_msg()
- 7 includes/xmlrpc.inc \xmlrpc_error_msg()
Returns the last XML-RPC client error message
File
- includes/
xmlrpc.inc, line 505 - 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_error_msg() {
$error = xmlrpc_error();
return $error != NULL ? $error->message : NULL;
}