You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by ag...@apache.org on 2010/02/09 16:05:01 UTC

svn commit: r908063 - /shindig/trunk/php/src/social/service/RpcRequestItem.php

Author: agektmr
Date: Tue Feb  9 15:05:01 2010
New Revision: 908063

URL: http://svn.apache.org/viewvc?rev=908063&view=rev
Log:
SHINDIG-1265 | RpcRequestItem params Submitted by Atsushi Odagiri

Modified:
    shindig/trunk/php/src/social/service/RpcRequestItem.php

Modified: shindig/trunk/php/src/social/service/RpcRequestItem.php
URL: http://svn.apache.org/viewvc/shindig/trunk/php/src/social/service/RpcRequestItem.php?rev=908063&r1=908062&r2=908063&view=diff
==============================================================================
--- shindig/trunk/php/src/social/service/RpcRequestItem.php (original)
+++ shindig/trunk/php/src/social/service/RpcRequestItem.php Tue Feb  9 15:05:01 2010
@@ -30,7 +30,7 @@
       throw new SocialSpiException("Missing method in RPC call");
     }
     parent::__construct($rpc['method'], $rpc['method'], $token);
-    if (isset($rpc->params)) {
+    if (isset($rpc['params'])) {
       $this->data = $rpc['params'];
     } else {
       $this->data = array();