diff options
author | Evan Prodromou <git@evanprodromou.name> | 2009-01-24 10:38:11 +0100 |
---|---|---|
committer | Evan Prodromou <git@evanprodromou.name> | 2009-01-24 10:38:11 +0100 |
commit | 1b07e65277fafde9e8b9e1809e012d4e954fc2c2 (patch) | |
tree | fe701d0998fb59cd26f0ea160b659d3f03ee37e8 /actions/usergroups.php | |
parent | 8638479cb6287a4c22e485ba71fab4b12a6fc40f (diff) | |
parent | cf7908a9715fe91836aa41d5bcf9f32e33be8644 (diff) |
Merge branch 'master' of evan@dev.controlyourself.ca:/var/www/trunk
Diffstat (limited to 'actions/usergroups.php')
-rw-r--r-- | actions/usergroups.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/actions/usergroups.php b/actions/usergroups.php index 748585e1d..58cf7eeb6 100644 --- a/actions/usergroups.php +++ b/actions/usergroups.php @@ -119,9 +119,11 @@ class UsergroupsAction 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; |