Start showing warning for deprecated PHP entry point

Change-Id: I88b1c49d1e03b241581fa024bfc9e8f27ad90c73
This commit is contained in:
Fomafix 2018-08-24 18:28:56 +02:00
parent 1d687e23f3
commit b7eed36a09

View file

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