move Invite button to top

This commit is contained in:
Evan Prodromou 2011-04-16 16:12:04 -04:00
parent 51a7e9961d
commit d9f27fcb14
2 changed files with 3 additions and 3 deletions

View File

@ -185,9 +185,9 @@ class AllAction extends ProfileAction
function showSections()
{
$this->showSubscriptions();
$ibs = new InviteButtonSection($this);
$ibs->show();
$this->showSubscriptions();
$this->showSubscribers();
$this->showGroups();
$this->showLists();

View File

@ -222,10 +222,10 @@ class PublicAction extends Action
function showSections()
{
$pop = new PopularNoticeSection($this);
$pop->show();
$ibs = new InviteButtonSection($this);
$ibs->show();
$pop = new PopularNoticeSection($this);
$pop->show();
$gbp = new GroupsByMembersSection($this);
$gbp->show();
$feat = new FeaturedUsersSection($this);