diff options
author | Sarven Capadisli <csarven@controlyourself.ca> | 2009-06-29 22:07:16 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@controlyourself.ca> | 2009-06-29 22:07:16 +0000 |
commit | 1268be4f82123a4dc8260f14813d7babb7f5c9f9 (patch) | |
tree | dc009a2c2944dbea553baa9b1166af60ed0cebb3 /actions/groupmembers.php | |
parent | 5b8e40aaa9bdb0c07cce0cf53cd913b0c397fdc4 (diff) |
Using role for admin indicator. Added margin-left.
Diffstat (limited to 'actions/groupmembers.php')
-rw-r--r-- | actions/groupmembers.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/groupmembers.php b/actions/groupmembers.php index be7a9e81c..14256526a 100644 --- a/actions/groupmembers.php +++ b/actions/groupmembers.php @@ -172,7 +172,7 @@ class GroupMemberListItem extends ProfileListItem parent::showFullName(); if ($this->profile->isAdmin($this->group)) { $this->out->text(' '); - $this->out->element('span', 'admin_indicator', _('Admin')); + $this->out->element('span', 'role', _('Admin')); } } |