mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CookieWarning
synced 2024-11-23 13:56:53 +00:00
Start showing warning for deprecated PHP entry point
Change-Id: Idb9ab6f88dfa2daa9020a4ebfc2bf061ce600ec7
This commit is contained in:
parent
cfa56cdcb3
commit
bd03779c92
|
@ -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+' );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue