| 5 xmlrpc.inc | xmlrpc_error_msg() |
| 6 xmlrpc.inc | xmlrpc_error_msg() |
| 7 xmlrpc.inc | xmlrpc_error_msg() |
| 8 xmlrpc.inc | xmlrpc_error_msg() |
Returns the last XML-RPC client error message.
File
- includes/
xmlrpc.inc, line 612 - Drupal XML-RPC library.
Code
function xmlrpc_error_msg() {
$error = xmlrpc_error();
return ($error != NULL ? $error->message : NULL);
}
Login or register to post comments