From e31f13d22942bfde6c3769eea60dd5421b191a66 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Sat, 8 Oct 2005 22:39:17 +0000 Subject: [PATCH] * 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 --- includes/SpecialPage.php | 3 +++ 1 file changed, 3 insertions(+) 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' ), -- 2.20.1