summaryrefslogtreecommitdiff
path: root/actions/showgroup.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/showgroup.php')
-rw-r--r--actions/showgroup.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/actions/showgroup.php b/actions/showgroup.php
index 534043c24..8d8fbe6be 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();
}
/**
@@ -349,7 +351,7 @@ class ShowgroupAction extends Action
return;
}
- $this->elementStart('div', array('id' => 'entity_subscriptions',
+ $this->elementStart('div', array('id' => 'entity_members',
'class' => 'section'));
$this->element('h2', null, _('Members'));
@@ -367,5 +369,7 @@ class ShowgroupAction extends Action
array('nickname' => $this->group->nickname))),
_('All members'));
}
+
+ $this->elementEnd('div');
}
}