]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add a popular notices section to the public page
authorEvan Prodromou <evan@controlyourself.ca>
Thu, 22 Jan 2009 19:48:35 +0000 (19:48 +0000)
committerEvan Prodromou <evan@controlyourself.ca>
Thu, 22 Jan 2009 19:48:35 +0000 (19:48 +0000)
actions/public.php

index 880b651e15bf3b39c198092132a22a9869db7219..8ce7fbee3ea54c2ab87e54fb8f04f2c615236ff2 100644 (file)
@@ -202,5 +202,7 @@ class PublicAction extends Action
     {
         $top = new TopPostersSection($this);
         $top->show();
+        $pop = new PopularNoticeSection($this);
+        $pop->show();
     }
 }