mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-12 00:59:46 +00:00
12 lines
273 B
PHP
12 lines
273 B
PHP
<?php
|
|
|
|
if ( function_exists( 'wfLoadSkin' ) ) {
|
|
wfLoadSkin( 'Citizen' );
|
|
// Keep i18n globals so mergeMessageFileList.php doesn't break
|
|
$wgMessagesDirs['Citizen'] = __DIR__ . '/i18n';
|
|
|
|
return true;
|
|
}
|
|
|
|
die( 'This version of the Citizen skin requires MediaWiki 1.31+' );
|