diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2014-07-22 10:32:36 +0200 |
---|---|---|
committer | David <ottodavid@gmx.net> | 2014-08-22 12:41:57 +0200 |
commit | 7268de30b0d7e4e29c87341d9bd9d39f152674d3 (patch) | |
tree | 2b2252fab31049b68cce548220bacec27734f4b5 /framework | |
parent | cbb5f2793ceb96c072af1a662eba5e96bf38e180 (diff) |
fix #527
(cherry picked from commit 064bf94147a90234007c8a124ba7bd9fc27fc0cd)
Diffstat (limited to 'framework')
-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( |