diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2014-07-22 10:32:36 +0200 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2014-07-22 10:32:36 +0200 |
commit | 064bf94147a90234007c8a124ba7bd9fc27fc0cd (patch) | |
tree | bc73196c99e91f1970b87d30d24f81f5537b6f3f | |
parent | 9c2824b1b752f26cc2bea0667a7ee2c7bbf26db0 (diff) |
fix #527
-rw-r--r-- | framework/Web/Services/TRpcService.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/Services/TRpcService.php b/framework/Web/Services/TRpcService.php index 546ab82a..a4ed3d7c 100644 --- a/framework/Web/Services/TRpcService.php +++ b/framework/Web/Services/TRpcService.php @@ -488,7 +488,7 @@ class TJsonRpcProtocol extends TRpcProtocol return $this->encode(array( 'jsonrpc' => '2.0', 'id' => $this->_id, - 'result' => $this->callApiMethod($_request['method'], $parameters); + 'result' => $this->callApiMethod($_request['method'], $parameters), )); } else { return $this->encode(array( |