From: Zach Copley Date: Thu, 14 Apr 2011 01:17:04 +0000 (-0700) Subject: Groups directory - fix missing closing list item tag - was making the layout wonky X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ddc42b1baf4f7b20d0d14981268f7b6d6ce223dc;p=quix0rs-gnu-social.git Groups directory - fix missing closing list item tag - was making the layout wonky --- diff --git a/plugins/Directory/lib/sortablegrouplist.php b/plugins/Directory/lib/sortablegrouplist.php index 7d1e2d5b80..72be1f20b9 100644 --- a/plugins/Directory/lib/sortablegrouplist.php +++ b/plugins/Directory/lib/sortablegrouplist.php @@ -202,6 +202,7 @@ class SortableGroupListItem extends SortableSubscriptionListItem Event::handle('EndProfileListItemActions', array($this)); } $this->endItem(); + Event::handle('EndProfileListItem', array($this)); } } @@ -231,6 +232,8 @@ class SortableGroupListItem extends SortableSubscriptionListItem $jf = new JoinForm($this->out, $this->profile); $jf->show(); } + + $this->out->elementEnd('li'); } }