From: Evan Prodromou Date: Thu, 22 Jan 2009 19:48:35 +0000 (+0000) Subject: Add a popular notices section to the public page X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b6dad052bdde1ba6d91eac370f17a9af235b9e09;p=quix0rs-gnu-social.git Add a popular notices section to the public page --- diff --git a/actions/public.php b/actions/public.php index 880b651e15..8ce7fbee3e 100644 --- a/actions/public.php +++ b/actions/public.php @@ -202,5 +202,7 @@ class PublicAction extends Action { $top = new TopPostersSection($this); $top->show(); + $pop = new PopularNoticeSection($this); + $pop->show(); } }