mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CookieWarning
synced 2024-11-27 15:40:16 +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' );
|
wfLoadExtension( 'CookieWarning' );
|
||||||
// Keep i18n globals so mergeMessageFileList.php doesn't break
|
// Keep i18n globals so mergeMessageFileList.php doesn't break
|
||||||
$wgMessagesDirs['CookieWarning'] = __DIR__ . '/i18n';
|
$wgMessagesDirs['CookieWarning'] = __DIR__ . '/i18n';
|
||||||
/* wfWarn(
|
wfWarn(
|
||||||
'Deprecated PHP entry point used for CookieWarning extension. Please use wfLoadExtension' .
|
'Deprecated PHP entry point used for CookieWarning extension. Please use wfLoadExtension' .
|
||||||
'instead, see https://www.mediawiki.org/wiki/Extension_registration for more details.'
|
'instead, see https://www.mediawiki.org/wiki/Extension_registration for more details.'
|
||||||
); */
|
);
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} 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