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/06/09 10:53:22 UTC

svn commit: r664664 - /incubator/shindig/trunk/php/src/socialdata/samplecontainer/BasicPeopleService.php

Author: chabotc
Date: Mon Jun  9 01:53:22 2008
New Revision: 664664

URL: http://svn.apache.org/viewvc?rev=664664&view=rev
Log:
Fixes SHINDIG-367

Modified:
    incubator/shindig/trunk/php/src/socialdata/samplecontainer/BasicPeopleService.php

Modified: incubator/shindig/trunk/php/src/socialdata/samplecontainer/BasicPeopleService.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/socialdata/samplecontainer/BasicPeopleService.php?rev=664664&r1=664663&r2=664664&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/socialdata/samplecontainer/BasicPeopleService.php (original)
+++ incubator/shindig/trunk/php/src/socialdata/samplecontainer/BasicPeopleService.php Mon Jun  9 01:53:22 2008
@@ -57,8 +57,8 @@
 						if (isset($person->$field) && ! isset($newPerson[$field])) {
 							$newPerson[$field] = $person->$field;
 						}
-						$person = $newPerson;
 					}
+					$person = $newPerson;
 					// return only the requested profile detail fields
 				}
 				$people[] = $person;