diff options
Diffstat (limited to 'actions/public.php')
-rw-r--r-- | actions/public.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/actions/public.php b/actions/public.php index 0ceeef98e..b51a95f24 100644 --- a/actions/public.php +++ b/actions/public.php @@ -197,4 +197,14 @@ class PublicAction extends Action 'version' => 'Atom 1.0', 'item' => 'publicatom'))); } + + function showSections() + { + $top = new TopPostersSection($this); + $top->show(); + $pop = new PopularNoticeSection($this); + $pop->show(); + $gbp = new GroupsByPostsSection($this); + $gbp->show(); + } } |