diff options
Diffstat (limited to 'engine')
-rw-r--r-- | engine/lib/xml-rpc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/xml-rpc.php b/engine/lib/xml-rpc.php index d6a391fce..5af50e577 100644 --- a/engine/lib/xml-rpc.php +++ b/engine/lib/xml-rpc.php @@ -503,7 +503,7 @@ END; */ function __php_xmlrpc_exception_handler($exception) { - error_log("*** FATAL EXCEPTION (API) *** : " . $exception); + error_log("*** FATAL EXCEPTION (XML-RPC) *** : " . $exception); page_draw($exception->getMessage(), elgg_view("xml-rpc/output", array('result' => new XMLRPCErrorResponse($exception->getMessage(), $exception->getCode()==0 ? -32400 : $exception->getCode())))); } |