mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-13 18:07:00 +00:00
bf412aad28
Bug: T88047 Change-Id: I6930b478ea094ab9ce829f167674995de6c16bdf
14 lines
519 B
PHP
14 lines
519 B
PHP
<?php
|
|
if ( function_exists( 'wfLoadExtension' ) ) {
|
|
wfLoadExtension( 'ConfirmEdit/FancyCaptcha' );
|
|
// Keep i18n globals so mergeMessageFileList.php doesn't break
|
|
$wgMessagesDirs['FancyCaptcha'] = __DIR__ . '/i18n';
|
|
/* wfWarn(
|
|
'Deprecated PHP entry point used for FancyCaptcha extension. Please use wfLoadExtension instead, ' .
|
|
'see https://www.mediawiki.org/wiki/Extension_registration for more details.'
|
|
); */
|
|
return;
|
|
} else {
|
|
die( 'This version of the FancyCaptcha extension requires MediaWiki 1.25+' );
|
|
}
|