mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-24 00:04:15 +00:00
36abbc6288
This change adds a new Captcha type (ReCaptchaNoCaptcha) that uses Google reCAPTCHA 2.0. See more: - https://www.google.com/recaptcha/intro/ - https://developers.google.com/recaptcha/docs/display - https://developers.google.com/recaptcha/docs/faq - http://googleonlinesecurity.blogspot.com/2014/12/are-you-robot-introducing-no-captcha.html Bug: T84918 Change-Id: I5908fd2716786237adb01a403d5bd1e22d95c563
14 lines
543 B
PHP
14 lines
543 B
PHP
<?php
|
|
if ( function_exists( 'wfLoadExtension' ) ) {
|
|
wfLoadExtension( 'ConfirmEdit/ReCaptchaNoCaptcha' );
|
|
// Keep i18n globals so mergeMessageFileList.php doesn't break
|
|
$wgMessagesDirs['ReCaptchaNoCaptcha'] = __DIR__ . '/i18n';
|
|
/* wfWarn(
|
|
'Deprecated PHP entry point used for ReCaptchaNoCaptcha extension. Please use wfLoadExtension instead, ' .
|
|
'see https://www.mediawiki.org/wiki/Extension_registration for more details.'
|
|
); */
|
|
return;
|
|
} else {
|
|
die( 'This version of the ReCaptchaNoCaptcha extension requires MediaWiki 1.25+' );
|
|
}
|