diff options
Diffstat (limited to 'includes/page/CategoryPage.php')
-rw-r--r-- | includes/page/CategoryPage.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/includes/page/CategoryPage.php b/includes/page/CategoryPage.php index 9abc6a89..caebcd7d 100644 --- a/includes/page/CategoryPage.php +++ b/includes/page/CategoryPage.php @@ -61,7 +61,7 @@ class CategoryPage extends Article { return; } - if ( !wfRunHooks( 'CategoryPageView', array( &$this ) ) ) { + if ( !Hooks::run( 'CategoryPageView', array( &$this ) ) ) { return; } @@ -113,6 +113,8 @@ class CategoryPage extends Article { $until, $reqArray ); - $this->getContext()->getOutput()->addHTML( $viewer->getHTML() ); + $out = $this->getContext()->getOutput(); + $out->addHTML( $viewer->getHTML() ); + $this->addHelpLink( 'Help:Categories' ); } } |