diff options
author | Tim Roes <mail@timroes.de> | 2012-04-04 21:49:26 +0200 |
---|---|---|
committer | Tim Roes <mail@timroes.de> | 2012-04-04 21:49:26 +0200 |
commit | 586bfa91f239ca0bd7d90be35d5d81fb4edaa5d1 (patch) | |
tree | 5995b1817829fbd5b43add24ae44ab516b5dda3e /inc | |
parent | 23cee1230a769fa9239f1b010f06116f39de5302 (diff) | |
download | rpg-586bfa91f239ca0bd7d90be35d5d81fb4edaa5d1.tar.gz rpg-586bfa91f239ca0bd7d90be35d5d81fb4edaa5d1.tar.bz2 |
Changed an error code in XML-RPC interface.
This error hasn't anything to do with the rest of the -32600 errors.
Diffstat (limited to 'inc')
-rw-r--r-- | inc/IXR_Library.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/IXR_Library.php b/inc/IXR_Library.php index d1e877813..979dc4d16 100644 --- a/inc/IXR_Library.php +++ b/inc/IXR_Library.php @@ -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); } |