summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2012-04-04 23:44:54 -0700
committerAndreas Gohr <andi@splitbrain.org>2012-04-04 23:44:54 -0700
commit16f75716f2eea236f8e20679afda2ca99f1396c9 (patch)
tree5995b1817829fbd5b43add24ae44ab516b5dda3e /inc
parent23cee1230a769fa9239f1b010f06116f39de5302 (diff)
parent586bfa91f239ca0bd7d90be35d5d81fb4edaa5d1 (diff)
downloadrpg-16f75716f2eea236f8e20679afda2ca99f1396c9.tar.gz
rpg-16f75716f2eea236f8e20679afda2ca99f1396c9.tar.bz2
Merge pull request #91 from timroes/master
Changed one error code in XML-RPC interface
Diffstat (limited to 'inc')
-rw-r--r--inc/IXR_Library.php2
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);
}