diff options
author | Robin Millette <millette@plantard.controlezvous.ca> | 2009-01-22 20:33:34 +0000 |
---|---|---|
committer | Robin Millette <millette@plantard.controlezvous.ca> | 2009-01-22 20:33:34 +0000 |
commit | 9e9b8349a2d32ae664a5b000ef34a7bb13a039f5 (patch) | |
tree | 029c69c1c9acf04fbe91994896d971cd25e7a48e /actions/public.php | |
parent | 5a84d7f975c2ae356d1fbd88757414ecb385ff5e (diff) | |
parent | 248fd763bde70537e5e9a14db435c27a52849c9a (diff) |
Merge branch 'master' of /var/www/trunk
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(); + } } |