summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/ConfirmEdit/QuestyCaptcha/QuestyCaptcha.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/ConfirmEdit/QuestyCaptcha/QuestyCaptcha.php')
-rw-r--r--www/wiki/extensions/ConfirmEdit/QuestyCaptcha/QuestyCaptcha.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/www/wiki/extensions/ConfirmEdit/QuestyCaptcha/QuestyCaptcha.php b/www/wiki/extensions/ConfirmEdit/QuestyCaptcha/QuestyCaptcha.php
new file mode 100644
index 00000000..730f4b10
--- /dev/null
+++ b/www/wiki/extensions/ConfirmEdit/QuestyCaptcha/QuestyCaptcha.php
@@ -0,0 +1,14 @@
+<?php
+if ( function_exists( 'wfLoadExtension' ) ) {
+ wfLoadExtension( 'ConfirmEdit/QuestyCaptcha' );
+ // Keep i18n globals so mergeMessageFileList.php doesn't break
+ $wgMessagesDirs['QuestyCaptcha'] = __DIR__ . '/i18n';
+ /* wfWarn(
+ 'Deprecated PHP entry point used for QuestyCaptcha extension. ' .
+ 'Please use wfLoadExtension instead, ' .
+ 'see https://www.mediawiki.org/wiki/Extension_registration for more details.'
+ ); */
+ return;
+} else {
+ die( 'This version of the QuestyCaptcha extension requires MediaWiki 1.25+' );
+}