summaryrefslogtreecommitdiff
path: root/actions/public.php
diff options
context:
space:
mode:
authorRobin Millette <millette@plantard.controlezvous.ca>2009-01-22 20:33:34 +0000
committerRobin Millette <millette@plantard.controlezvous.ca>2009-01-22 20:33:34 +0000
commit9e9b8349a2d32ae664a5b000ef34a7bb13a039f5 (patch)
tree029c69c1c9acf04fbe91994896d971cd25e7a48e /actions/public.php
parent5a84d7f975c2ae356d1fbd88757414ecb385ff5e (diff)
parent248fd763bde70537e5e9a14db435c27a52849c9a (diff)
Merge branch 'master' of /var/www/trunk
Diffstat (limited to 'actions/public.php')
-rw-r--r--actions/public.php10
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();
+ }
}