Start showing warning for deprecated PHP entry point

Change-Id: Idb9ab6f88dfa2daa9020a4ebfc2bf061ce600ec7
This commit is contained in:
Fomafix 2018-08-24 18:27:37 +02:00 committed by Umherirrender
parent cfa56cdcb3
commit bd03779c92

View file

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