Groups directory - fix missing closing list item tag - was making the layout wonky

This commit is contained in:
Zach Copley 2011-04-13 18:17:04 -07:00
parent b959147ada
commit ddc42b1baf

View File

@ -202,6 +202,7 @@ class SortableGroupListItem extends SortableSubscriptionListItem
Event::handle('EndProfileListItemActions', array($this)); Event::handle('EndProfileListItemActions', array($this));
} }
$this->endItem(); $this->endItem();
Event::handle('EndProfileListItem', array($this)); Event::handle('EndProfileListItem', array($this));
} }
} }
@ -231,6 +232,8 @@ class SortableGroupListItem extends SortableSubscriptionListItem
$jf = new JoinForm($this->out, $this->profile); $jf = new JoinForm($this->out, $this->profile);
$jf->show(); $jf->show();
} }
$this->out->elementEnd('li');
} }
} }