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/07/22 10:17:26 UTC

svn commit: r678671 - /incubator/shindig/trunk/php/src/social-api/samplecontainer/BasicPeopleService.php

Author: chabotc
Date: Tue Jul 22 01:17:25 2008
New Revision: 678671

URL: http://svn.apache.org/viewvc?rev=678671&view=rev
Log:
SHINDIG-464 Wrong param order in getPeople call

Modified:
    incubator/shindig/trunk/php/src/social-api/samplecontainer/BasicPeopleService.php

Modified: incubator/shindig/trunk/php/src/social-api/samplecontainer/BasicPeopleService.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/social-api/samplecontainer/BasicPeopleService.php?rev=678671&r1=678670&r2=678671&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/social-api/samplecontainer/BasicPeopleService.php (original)
+++ incubator/shindig/trunk/php/src/social-api/samplecontainer/BasicPeopleService.php Tue Jul 22 01:17:25 2008
@@ -31,7 +31,7 @@
 
 	public function getPerson($userId, $groupId, $profileDetails, SecurityToken $token)
 	{
-		$person = $this->getPeople($userId, $groupId, null, null, null, null, $profileDetails, $token, null);
+		$person = $this->getPeople($userId, $groupId, null, null, null, null, $profileDetails, null, $token);
 		// return of getPeople is a ResponseItem(RestfulCollection(ArrayOfPeople)), disassemble to return just one person
 		$person = $person->getResponse()->getEntry();
 		if (is_array($person) && count($person) == 1) {