Merge "Start showing warning for deprecated PHP entry point"

This commit is contained in:
jenkins-bot 2018-10-30 17:24:43 +00:00 committed by Gerrit Code Review
commit 9f7b99dd98

View file

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