mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/SpamBlacklist
synced 2024-11-14 19:05:58 +00:00
9733b3b40d
Prepare to make phpcs pass Change-Id: I814715c63af5ed5db673786e1fdab9fc59441b67
15 lines
518 B
PHP
15 lines
518 B
PHP
<?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+' );
|
|
}
|