]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add top posters section to public page
authorEvan Prodromou <evan@controlyourself.ca>
Thu, 22 Jan 2009 19:08:16 +0000 (20:08 +0100)
committerEvan Prodromou <evan@controlyourself.ca>
Thu, 22 Jan 2009 19:08:16 +0000 (20:08 +0100)
actions/public.php

index 0ceeef98e8c1cf4f5e5e5a25f46d8733ad1cfd7a..880b651e15bf3b39c198092132a22a9869db7219 100644 (file)
@@ -197,4 +197,10 @@ class PublicAction extends Action
                                    'version' => 'Atom 1.0',
                                    'item' => 'publicatom')));
     }
+
+    function showSections()
+    {
+        $top = new TopPostersSection($this);
+        $top->show();
+    }
 }