Uncomment wfWarn in deprecated PHP entry point

Change-Id: I75ddd651c6b25f25f7c67d5c18af986d2d7b1abb
This commit is contained in:
James D. Forrester 2017-10-13 14:17:43 -07:00
parent d89183d408
commit 31c3e8609a

View file

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