You are here

function xmlrpc_clear_error in Drupal 6

Same name and namespace in other branches
  1. 5 includes/xmlrpc.inc \xmlrpc_clear_error()
  2. 7 includes/xmlrpc.inc \xmlrpc_clear_error()

Clears any previous error.

1 call to xmlrpc_clear_error()
_xmlrpc in includes/xmlrpc.inc
Execute an XML remote procedural call. This is private function; call xmlrpc() in common.inc instead of this function.

File

includes/xmlrpc.inc, line 513
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_clear_error() {
  xmlrpc_error(NULL, NULL, TRUE);
}