summaryrefslogtreecommitdiffstats
path: root/skins/Cavendish/Cavendish.php
blob: 4fdd0d433c87b7b76381d5896fc43e7fb5a1ff89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

if ( function_exists( 'wfLoadSkin' ) ) {
	wfLoadSkin( 'Cavendish' );
	// Keep i18n globals so mergeMessageFileList.php doesn't break
	$wgMessagesDirs['Modern'] = __DIR__ . '/i18n';
	/* wfWarn(
		'Deprecated PHP entry point used for Modern skin. Please use wfLoadSkin instead, ' .
		'see https://www.mediawiki.org/wiki/Extension_registration for more details.'
	); */
	return true;
} else {
	die( 'This version of the Modern skin requires MediaWiki 1.25+' );
}