From d9f27fcb148681f31e55a22ac911b0ea3d6a7940 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 16 Apr 2011 16:12:04 -0400 Subject: [PATCH] move Invite button to top --- actions/all.php | 2 +- actions/public.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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); -- 2.39.2