From: Evan Prodromou <evan@controlyourself.ca>
Date: Thu, 22 Jan 2009 21:42:34 +0000 (+0000)
Subject: Added featured users to public timeline
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=10241a6d8353f2efb1fd8f5f34f56785c62bfc67;p=quix0rs-gnu-social.git

Added featured users to public timeline
---

diff --git a/actions/public.php b/actions/public.php
index b51a95f244..c2e90c3b50 100644
--- a/actions/public.php
+++ b/actions/public.php
@@ -206,5 +206,7 @@ class PublicAction extends Action
         $pop->show();
         $gbp = new GroupsByPostsSection($this);
         $gbp->show();
+        $feat = new FeaturedUsersSection($this);
+        $feat->show();
     }
 }