mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/InputBox
synced 2024-11-24 07:03:41 +00:00
Remove php entry point
Deprecation notice since I66e5606b4dbd049eefab3461618b877219ca3e93 Bug: T140850 Change-Id: I44e32a0503fa4f9278c6dba52680883bc2b356fc
This commit is contained in:
parent
65690a1944
commit
908608e7b9
13
InputBox.php
13
InputBox.php
|
@ -1,13 +0,0 @@
|
|||
<?php
|
||||
if ( function_exists( 'wfLoadExtension' ) ) {
|
||||
wfLoadExtension( 'InputBox' );
|
||||
// Keep i18n globals so mergeMessageFileList.php doesn't break
|
||||
$wgMessagesDirs['InputBox'] = __DIR__ . '/i18n';
|
||||
wfWarn(
|
||||
'Deprecated PHP entry point used for InputBox extension. Please use wfLoadExtension instead, ' .
|
||||
'see https://www.mediawiki.org/wiki/Extension_registration for more details.'
|
||||
);
|
||||
return;
|
||||
} else {
|
||||
die( 'This version of the InputBox extension requires MediaWiki 1.30+' );
|
||||
}
|
Loading…
Reference in a new issue