blob: 192b49a9f7a059dcbf2aa67d8c7e8d376073106f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
if ( function_exists( 'wfLoadExtension' ) ) {
wfLoadExtension( 'ConfirmEdit/MathCaptcha' );
// Keep i18n globals so mergeMessageFileList.php doesn't break
$wgMessagesDirs['MathCaptcha'] = __DIR__ . '/i18n';
/* wfWarn(
'Deprecated PHP entry point used for MathCaptcha extension. Please use wfLoadExtension instead, ' .
'see https://www.mediawiki.org/wiki/Extension_registration for more details.'
); */
return;
} else {
die( 'This version of the MathCaptcha extension requires MediaWiki 1.25+' );
}
|