mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-12 01:11:15 +00:00
bd5c5d494e
1. change in preparation for ExtensionRegistration. Bug: T88047 Change-Id: Ia3b84d3cb71832749ae73774dadb292dc4b9157b
22 lines
476 B
PHP
22 lines
476 B
PHP
<?php
|
|
|
|
/**
|
|
* Captcha class using simple sums and the math renderer
|
|
* Not brilliant, but enough to dissuade casual spam bots
|
|
*
|
|
* @file
|
|
* @ingroup Extensions
|
|
* @author Rob Church <robchur@gmail.com>
|
|
* @copyright © 2006 Rob Church
|
|
* @licence GNU General Public Licence 2.0
|
|
*/
|
|
|
|
if ( !defined( 'MEDIAWIKI' ) ) {
|
|
exit;
|
|
}
|
|
|
|
require_once __DIR__ . '/ConfirmEdit.php';
|
|
$wgCaptchaClass = 'MathCaptcha';
|
|
|
|
$wgAutoloadClasses['MathCaptcha'] = __DIR__ . '/MathCaptcha.class.php';
|