function xmlrpc_error_msg

Same name and namespace in other branches
  1. 6.x drupal-6.x/includes/xmlrpc.inc \xmlrpc_error_msg()

Returns the last XML-RPC client error message.

Archivo

drupal-7.x/includes/xmlrpc.inc, line 612
Drupal XML-RPC library.

Código

function xmlrpc_error_msg() {
  $error = xmlrpc_error();
  return ($error != NULL ? $error->message : NULL);
}