You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
329 B
PHP
11 lines
329 B
PHP
<?php
|
|
/**
|
|
* This PHP entry point is deprecated. Please use wfLoadSkin() and the skin.json file
|
|
* instead. See https://www.mediawiki.org/wiki/Manual:Extension_registration for more details.
|
|
*/
|
|
if ( !function_exists( 'wfLoadSkin' ) ) {
|
|
die( 'The Timeless skin requires MediaWiki 1.25 or newer.' );
|
|
}
|
|
|
|
wfLoadSkin( 'Timeless' );
|