Merge "Remove deprecated PHP entry point"

This commit is contained in:
jenkins-bot 2017-10-18 20:40:29 +00:00 committed by Gerrit Code Review
commit c402dbb3ea

View file

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