Skip to content
Snippets Groups Projects
Commit 47e1a58a authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #33555 by leoburd: fixed typo in XML-RPC backend.

parent 09d16332
No related branches found
No related tags found
No related merge requests found
......@@ -373,7 +373,7 @@ function xmlrpc() {
}
// Is the message a fault?
if ($message->messagetype == 'fault') {
xmlrpc_error($message->faultcode, $message->faultstring);
xmlrpc_error($message->fault_code, $message->fault_string);
return FALSE;
}
// Message must be OK
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment