entities)) {
$count = sizeof($vars['collection']->entities);
} 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($members = $vars['collection']->entities){
echo elgg_view('friends/picker',array('entities' => $members));
}
// close friends_picker div and the accordian list item
echo "";
?>