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 2009/02/04 19:34:46 UTC

svn commit: r740820 - /incubator/shindig/trunk/php/src/social/service/ActivityHandler.php

Author: chabotc
Date: Wed Feb  4 18:34:45 2009
New Revision: 740820

URL: http://svn.apache.org/viewvc?rev=740820&view=rev
Log:
Fixes up the activities path parsing, was missing the appId param

Modified:
    incubator/shindig/trunk/php/src/social/service/ActivityHandler.php

Modified: incubator/shindig/trunk/php/src/social/service/ActivityHandler.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/social/service/ActivityHandler.php?rev=740820&r1=740819&r2=740820&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/social/service/ActivityHandler.php (original)
+++ incubator/shindig/trunk/php/src/social/service/ActivityHandler.php Wed Feb  4 18:34:45 2009
@@ -21,7 +21,7 @@
 class ActivityHandler extends DataRequestHandler {
   private $service;
 
-  private static $ACTIVITY_ID_PATH = "/activities/{userId}/{groupId}/{activityId}";
+  private static $ACTIVITY_ID_PATH = "/activities/{userId}/{groupId}/appId/{activityId}";
 
   public function __construct() {
     $service = Config::get('activity_service');