* @copyright Curverider Ltd 2008 * @link http://elgg.com/ * * @uses $vars['comments'] Array of comments */ if (isset($vars['comments']) && is_array($vars['comments']) && sizeof($vars['comments']) > 0) { echo "

". elgg_echo("comments") ."

    "; foreach($vars['comments'] as $comment) { echo elgg_view("object/blog-comment",array('entity' => $comment)); } echo "
"; } ?>