Changed an error code in XML-RPC interface.

This error hasn't anything to do with the rest of the -32600 errors.
This commit is contained in:
Tim Roes 2012-04-04 21:49:26 +02:00
parent 23cee1230a
commit 586bfa91f2

View file

@ -440,7 +440,7 @@ EOD;
$method = $call['methodName'];
$params = $call['params'];
if ($method == 'system.multicall') {
$result = new IXR_Error(-32600, 'Recursive calls to system.multicall are forbidden');
$result = new IXR_Error(-32800, 'Recursive calls to system.multicall are forbidden');
} else {
$result = $this->call($method, $params);
}