You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by ch...@apache.org on 2008/08/28 10:14:48 UTC

svn commit: r689755 - /incubator/shindig/trunk/php/src/social-api/dataservice/ActivitiesHandler.php

Author: chabotc
Date: Thu Aug 28 01:14:48 2008
New Revision: 689755

URL: http://svn.apache.org/viewvc?rev=689755&view=rev
Log:
SHINDIG-550 by Ram Sharma : Return Statement missing in ActivitiesHandler->handleGet() method

Modified:
    incubator/shindig/trunk/php/src/social-api/dataservice/ActivitiesHandler.php

Modified: incubator/shindig/trunk/php/src/social-api/dataservice/ActivitiesHandler.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/social-api/dataservice/ActivitiesHandler.php?rev=689755&r1=689754&r2=689755&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/social-api/dataservice/ActivitiesHandler.php (original)
+++ incubator/shindig/trunk/php/src/social-api/dataservice/ActivitiesHandler.php Thu Aug 28 01:14:48 2008
@@ -55,6 +55,7 @@
 		if ($ret->getError()) {
 			return new ResponseItem(null, null, array());
 		}
+		return $ret;
 	}
 
 	/**