diff options
Diffstat (limited to 'actions/groups.php')
-rw-r--r-- | actions/groups.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/actions/groups.php b/actions/groups.php index 6faa497fc..261f9b3aa 100644 --- a/actions/groups.php +++ b/actions/groups.php @@ -95,9 +95,11 @@ class GroupsAction extends Action function showContent() { + $this->elementStart('p', array('id' => 'new_group')); $this->element('a', array('href' => common_local_url('newgroup'), - 'id' => 'new_group'), + 'class' => 'more'), _('Create a new group')); + $this->elementEnd('p'); $offset = ($this->page-1) * GROUPS_PER_PAGE; $limit = GROUPS_PER_PAGE + 1; |