entities)) {
$count = sizeof($vars['collection']->members);
} else {
$count = 0;
}
echo "
";
//as collections are private, check that the logged in user is the owner
if($coll->owner_guid == $_SESSION['user']->getGUID())
echo "";
echo $coll->name;
echo " ({$count})
";
// Ben - this is where the friends picker view needs to go
if($friends = $vars['collection']->entities){
$members = $vars['collection']->members;
echo elgg_view('friends/picker',array('entities' => $friends, 'value' => $members));
}
// close friends_picker div and the accordian list item
echo "";
?>