* Three new special pages:
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Sat, 8 Oct 2005 22:39:17 +0000 (22:39 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Sat, 8 Oct 2005 22:39:17 +0000 (22:39 +0000)
 - 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

includes/SpecialPage.php

index 353d743..479ea14 100644 (file)
@@ -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' ),