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:
parent
23cee1230a
commit
586bfa91f2
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue