mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/InputBox
synced 2024-11-14 18:55:16 +00:00
d5dbe717b6
Bug: T87931 Change-Id: Ib3cd4714c842ebf17da5b1f0932fd886dbc65c66
14 lines
491 B
PHP
14 lines
491 B
PHP
<?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.25+' );
|
|
}
|