diff --git a/actions/all.php b/actions/all.php index db89e5d838..96f688f720 100644 --- a/actions/all.php +++ b/actions/all.php @@ -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(); diff --git a/actions/public.php b/actions/public.php index cd15425fab..6ab9d1de9c 100644 --- a/actions/public.php +++ b/actions/public.php @@ -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);