Add Special:Translate and Special:ContributionScores to group wiki

This commit is contained in:
Siebrand Mazeland 2008-07-19 13:48:50 +00:00
parent 2bd5ff30c2
commit a49049ecc0

View file

@ -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';