summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
Diffstat (limited to 'actions')
-rw-r--r--actions/public.php2
-rw-r--r--actions/showgroup.php2
2 files changed, 4 insertions, 0 deletions
diff --git a/actions/public.php b/actions/public.php
index b51a95f24..c2e90c3b5 100644
--- a/actions/public.php
+++ b/actions/public.php
@@ -206,5 +206,7 @@ class PublicAction extends Action
$pop->show();
$gbp = new GroupsByPostsSection($this);
$gbp->show();
+ $feat = new FeaturedUsersSection($this);
+ $feat->show();
}
}
diff --git a/actions/showgroup.php b/actions/showgroup.php
index 534043c24..6e2f939f9 100644
--- a/actions/showgroup.php
+++ b/actions/showgroup.php
@@ -333,6 +333,8 @@ class ShowgroupAction extends Action
function showSections()
{
$this->showMembers();
+ $cloud = new GroupTagCloudSection($this, $this->group);
+ $cloud->show();
}
/**