summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-24 03:23:40 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-24 03:23:40 +0000
commit08030196ca2c0ff51ac0edd420f0e8046e676623 (patch)
treef378cf19b15c02f588457ddd2d70065229b10e71 /actions
parent0cdaf3e155db84f8b6319406038cc889357fd5d7 (diff)
new group markup in usergroups matching groups
Diffstat (limited to 'actions')
-rw-r--r--actions/usergroups.php4
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;