From: Ævar Arnfjörð Bjarmason Date: Sat, 8 Oct 2005 22:39:17 +0000 (+0000) Subject: * Three new special pages: X-Git-Tag: 1.6.0~1497 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=e31f13d22942bfde6c3769eea60dd5421b191a66;p=lhc%2Fweb%2Fwiklou.git * Three new special pages: - A special page to display the articles with the most revisions - A special page to display the articles with the most categories - A special page to display the articles with the most images --- diff --git a/includes/SpecialPage.php b/includes/SpecialPage.php index 353d743ff2..479ea14ec7 100644 --- a/includes/SpecialPage.php +++ b/includes/SpecialPage.php @@ -43,6 +43,9 @@ $wgSpecialPages = array( 'Unusedimages' => new SpecialPage( 'Unusedimages' ), 'Wantedpages' => new SpecialPage( 'Wantedpages' ), 'Mostlinked' => new SpecialPage( 'Mostlinked' ), + 'Mostcategories' => new SpecialPage( 'Mostcategories' ), + 'Mostimages' => new SpecialPage( 'Mostimages' ), + 'Mostrevisions' => new SpecialPage( 'Mostrevisions' ), 'Shortpages' => new SpecialPage( 'Shortpages' ), 'Longpages' => new SpecialPage( 'Longpages' ), 'Newpages' => new IncludableSpecialPage( 'Newpages' ),