diff options
Diffstat (limited to 'mod/groups/views/default/object')
-rw-r--r-- | mod/groups/views/default/object/groupforumtopic.php | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/mod/groups/views/default/object/groupforumtopic.php b/mod/groups/views/default/object/groupforumtopic.php index 23afe00e0..949a1b8e2 100644 --- a/mod/groups/views/default/object/groupforumtopic.php +++ b/mod/groups/views/default/object/groupforumtopic.php @@ -14,9 +14,11 @@ $title = $vars['entity']->title; $description = autop($vars['entity']->description); $group = get_entity($vars['entity']->container_guid); - $forum_created = friendly_time($vars['entity']->time_created); + $forum_created = friendly_time($vars['entity']->time_created);
+ if (isloggedin()) { $counter = $vars['entity']->countAnnotations("group_topic_post"); - $last_post = $vars['entity']->getAnnotations("group_topic_post", 1, 0, "desc"); + $last_post = $vars['entity']->getAnnotations("group_topic_post", 1, 0, "desc");
+ } //get the time and user foreach($last_post as $last){ $last_time = $last->time_created; @@ -30,8 +32,9 @@ $info .= '</p>'; //get the group avatar $icon = elgg_view("profile/icon",array('entity' => $group, 'size' => 'small')); - //get the group and topic title - $info .= "<p>" . elgg_echo('group') . ": <a href=\"{$group->getURL()}\">{$group->name}</a></p>"; + //get the group and topic title
+ if ($group instanceof ElggGroup) + $info .= "<p>" . elgg_echo('group') . ": <a href=\"{$group->getURL()}\">{$group->name}</a></p>"; $info .= "<p>" . elgg_echo('topic') . ": <a href=\"{$vars['url']}mod/groups/topicposts.php?topic={$vars['entity']->guid}&group_guid={$group->guid}\">{$title}</a></p>"; //get the forum description |