diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-22 20:08:16 +0100 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-22 20:08:16 +0100 |
commit | 94d3a4b22cfeeeff57be30647df6c59e971bfa52 (patch) | |
tree | ab433ceec0567c18536fc4d0b084634dba926d39 /actions/public.php | |
parent | 871439ba6735482c9be2fe252037c699bd951585 (diff) |
Add top posters section to public page
Diffstat (limited to 'actions/public.php')
-rw-r--r-- | actions/public.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/actions/public.php b/actions/public.php index 0ceeef98e..880b651e1 100644 --- a/actions/public.php +++ b/actions/public.php @@ -197,4 +197,10 @@ class PublicAction extends Action 'version' => 'Atom 1.0', 'item' => 'publicatom'))); } + + function showSections() + { + $top = new TopPostersSection($this); + $top->show(); + } } |