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
1 changed files with 3 additions and 0 deletions

View File

@ -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');
}
}