From a49049ecc0017900a51d4716357e4a271a2b17be Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 19 Jul 2008 13:48:50 +0000 Subject: [PATCH] Add Special:Translate and Special:ContributionScores to group wiki --- ContributionScores.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ContributionScores.php b/ContributionScores.php index f18c56c..7dd7b39 100644 --- a/ContributionScores.php +++ b/ContributionScores.php @@ -15,7 +15,7 @@ $wgExtensionCredits['specialpage'][] = array( 'author'=>'Tim Laqua', 'description'=>'Polls wiki database for highest user contribution volume', 'descriptionmsg' => 'contributionscores-desc', - 'version'=>'1.10' + 'version'=>'1.11' ); define( 'CONTRIBUTIONSCORES_PATH', dirname( __FILE__ ) ); @@ -28,6 +28,7 @@ $wgContribScoreDisableCache = false; $wgAutoloadClasses['ContributionScores'] = CONTRIBUTIONSCORES_PATH . '/ContributionScores_body.php'; $wgSpecialPages['ContributionScores'] = 'ContributionScores'; +$wgSpecialPageGroups['ContributionScores'] = 'wiki'; if( version_compare( $wgVersion, '1.11', '>=' ) ) { $wgExtensionMessagesFiles['ContributionScores'] = CONTRIBUTIONSCORES_PATH . '/ContributionScores.i18n.php';