diff options
Diffstat (limited to 'extensions/ConfirmEdit/MathCaptcha/MathCaptcha.php')
-rw-r--r-- | extensions/ConfirmEdit/MathCaptcha/MathCaptcha.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/extensions/ConfirmEdit/MathCaptcha/MathCaptcha.php b/extensions/ConfirmEdit/MathCaptcha/MathCaptcha.php new file mode 100644 index 00000000..192b49a9 --- /dev/null +++ b/extensions/ConfirmEdit/MathCaptcha/MathCaptcha.php @@ -0,0 +1,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+' ); +} |