From ddc42b1baf4f7b20d0d14981268f7b6d6ce223dc Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 13 Apr 2011 18:17:04 -0700 Subject: [PATCH] Groups directory - fix missing closing list item tag - was making the layout wonky --- plugins/Directory/lib/sortablegrouplist.php | 3 +++ 1 file changed, 3 insertions(+) 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'); } } -- 2.39.5