summaryrefslogtreecommitdiff
path: root/actions/groupmembers.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-06-14 22:16:24 -0700
committerEvan Prodromou <evan@controlyourself.ca>2009-06-14 22:16:24 -0700
commit2f3c4f8812d389df40cf62b8967cf3e359ad5663 (patch)
tree539e1ebe46e6e518b64ef26be13f39c54b90c1c2 /actions/groupmembers.php
parentc0f3204a10beaa4243eae1bc2862da7e0cfff10a (diff)
add correct li for css magic for block stuff
Diffstat (limited to 'actions/groupmembers.php')
-rw-r--r--actions/groupmembers.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/actions/groupmembers.php b/actions/groupmembers.php
index 150b60a54..65790b7ca 100644
--- a/actions/groupmembers.php
+++ b/actions/groupmembers.php
@@ -180,10 +180,12 @@ class GroupMemberListItem extends ProfileListItem
$user = common_current_user();
if (!empty($user) && $user->id != $this->profile->id && $user->isAdmin($this->group)) {
+ $this->out->elementStart('li', 'entity_block');
$bf = new GroupBlockForm($this->out, $this->profile, $this->group,
array('action' => 'groupmembers',
'nickname' => $this->group->nickname));
$bf->show();
+ $this->out->elementEnd('li');
}
}