diff options
Diffstat (limited to 'includes/xmlrpcs.inc')
-rw-r--r-- | includes/xmlrpcs.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/xmlrpcs.inc b/includes/xmlrpcs.inc index 8588680ece4..76ccd889597 100644 --- a/includes/xmlrpcs.inc +++ b/includes/xmlrpcs.inc @@ -200,7 +200,7 @@ function xmlrpc_server_call($xmlrpc_server, $methodname, $args) { } } - if (!drupal_function_exists($method)) { + if (!function_exists($method)) { return xmlrpc_error(-32601, t('Server error. Requested function @method does not exist.', array("@method" => $method))); } // Call the mapped function |