diff options
author | Robin Millette <millette@controlyourself.ca> | 2009-04-14 23:03:19 +0000 |
---|---|---|
committer | Robin Millette <millette@controlyourself.ca> | 2009-04-14 23:03:19 +0000 |
commit | 20394664957a202cc86cc48ee2d115032e82c58a (patch) | |
tree | bbce4d5bd0bb522d01e694eae9eb6baf843396a8 /actions | |
parent | 60245f6a27a21ecfc90a2be76fee657e8c696f96 (diff) |
trac#1223 Show most popular notices per tag in the tag page sidebar.
Diffstat (limited to 'actions')
-rw-r--r-- | actions/tag.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/actions/tag.php b/actions/tag.php index d15f64498..cb6572b96 100644 --- a/actions/tag.php +++ b/actions/tag.php @@ -45,6 +45,13 @@ class TagAction extends Action return true; } + function showSections() + { + $pop = new PopularNoticeSection($this); + $pop->show(); + } + + function title() { if ($this->page == 1) { |