aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/views/default/object/groupforumtopic.php
diff options
context:
space:
mode:
authordave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-04-22 13:57:00 +0000
committerdave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-04-22 13:57:00 +0000
commitfbf1ce69b529129c1d92772c2805f99480bd4650 (patch)
tree2101140b550f5dc3d19d4f924ea54aee040dee5b /mod/groups/views/default/object/groupforumtopic.php
parentf972a10ba975bccb41e34023e45134d5df544e4d (diff)
downloadelgg-fbf1ce69b529129c1d92772c2805f99480bd4650.tar.gz
elgg-fbf1ce69b529129c1d92772c2805f99480bd4650.tar.bz2
group forum discussion view updated to match the community
git-svn-id: http://code.elgg.org/elgg/trunk@5846 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/views/default/object/groupforumtopic.php')
-rw-r--r--mod/groups/views/default/object/groupforumtopic.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/groups/views/default/object/groupforumtopic.php b/mod/groups/views/default/object/groupforumtopic.php
index 22ecfb35a..8d5d655c0 100644
--- a/mod/groups/views/default/object/groupforumtopic.php
+++ b/mod/groups/views/default/object/groupforumtopic.php
@@ -38,10 +38,10 @@
//get the group avatar
$icon = elgg_view("profile/icon",array('entity' => $u, 'size' => 'tiny'));
//get the group and topic title
+ $info .= "<p class='entity_subtext'><b>" . elgg_echo('Topic') . ":</b> <a href=\"{$vars['url']}mod/groups/topicposts.php?topic={$vars['entity']->guid}&group_guid={$group->guid}\">{$title}</a></p>";
if ($group instanceof ElggGroup) {
- $info .= "<p class='entity_title'>" . elgg_echo('group') . ": <a href=\"{$group->getURL()}\">".htmlentities($group->name, ENT_QUOTES, 'UTF-8') ."</a></p>";
+ $info .= "<p class='entity_title'><b>" . elgg_echo('group') . ":</b> <a href=\"{$group->getURL()}\">".htmlentities($group->name, ENT_QUOTES, 'UTF-8') ."</a></p>";
}
- $info .= "<p class='entity_subtext'>" . elgg_echo('topic') . ": <a href=\"{$vars['url']}mod/groups/topicposts.php?topic={$vars['entity']->guid}&group_guid={$group->guid}\">{$title}</a></p>";
}else{