diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-22 21:42:34 +0000 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-22 21:42:34 +0000 |
commit | 10241a6d8353f2efb1fd8f5f34f56785c62bfc67 (patch) | |
tree | 4d01245a33578ca34a01ceab8e3c9f8f37654e24 /actions/public.php | |
parent | cb3d94ea93217c5e284d59097f1ea3441f01471f (diff) |
Added featured users to public timeline
Diffstat (limited to 'actions/public.php')
-rw-r--r-- | actions/public.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actions/public.php b/actions/public.php index b51a95f24..c2e90c3b5 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(); } } |