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