function xmlrpc_error_msg in Drupal 5
Same name and namespace in other branches
- 4 includes/xmlrpc.inc \xmlrpc_error_msg()
- 6 includes/xmlrpc.inc \xmlrpc_error_msg()
- 7 includes/xmlrpc.inc \xmlrpc_error_msg()
Returns the last XML-RPC client error message
2 calls to xmlrpc_error_msg()
- drupal_auth in modules/
drupal/ drupal.module - Implementation of hook_auth().
- drupal_notify in modules/
drupal/ drupal.module - Sends a ping to the Drupal directory server.
File
- includes/
xmlrpc.inc, line 477
Code
function xmlrpc_error_msg() {
$error = xmlrpc_error();
return $error->message;
}