title; ?>
getAnnotations('group_topic_post', 50, 0, "asc") as $post) {
echo elgg_view("forum/topicposts",array('entity' => $post));
}
// check to find out the status of the topic and act
if($vars['entity']->status != "closed" && page_owner_entity()->isMember($vars['user'])){
//display the add comment form, this will appear after all the existing comments
echo elgg_view("forms/forums/addpost", array('entity' => $vars['entity']));
} elseif($vars['entity']->status == "closed") {
//this topic has been closed by the owner
echo "" . elgg_echo("groups:topicisclosed") . "
";
echo "" . elgg_echo("groups:topiccloseddesc") . "
";
} else {
}
?>