Skip to content

Commit

Permalink
Merge pull request #2606 from phili67/phili67-peopleGroup-bug-res
Browse files Browse the repository at this point in the history
src/EcclesiaCRM/APIControllers/PeopleGroupController.php : to list al…
  • Loading branch information
phili67 committed Apr 14, 2024
2 parents 53d0384 + b2b694d commit 4882abc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/EcclesiaCRM/APIControllers/PeopleGroupController.php
Expand Up @@ -428,10 +428,12 @@ public function groupMembers (ServerRequest $request, Response $response, array
$member['Person']['City']= $fam->getCity();
$member['Person']['State']= $fam->getState();
$member['Person']['Zip']= $fam->getZip();
$member['Person']['img']= $per->getJPGPhotoDatas();

$res[] = $member;
}

$member['Person']['img']= $per->getJPGPhotoDatas();

$res[] = $member;
}

return $response->withJson(['Person2group2roleP2g2rs' => $res]);
Expand Down

0 comments on commit 4882abc

Please sign in to comment.