2006-06-12 19:56:17 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Captcha class using simple sums and the math renderer
|
|
|
|
* Not brilliant, but enough to dissuade casual spam bots
|
|
|
|
*
|
2007-01-20 15:10:35 +00:00
|
|
|
* @addtogroup Extensions
|
2006-06-12 19:56:17 +00:00
|
|
|
* @author Rob Church <robchur@gmail.com>
|
|
|
|
* @copyright © 2006 Rob Church
|
|
|
|
* @licence GNU General Public Licence 2.0
|
|
|
|
*/
|
|
|
|
|
2007-11-12 07:42:25 +00:00
|
|
|
if( !defined( 'MEDIAWIKI' ) ) {
|
2006-06-12 19:56:17 +00:00
|
|
|
echo( "This file is an extension to the MediaWiki software and cannot be used standalone.\n" );
|
|
|
|
die( 1 );
|
|
|
|
}
|
2007-11-12 07:42:25 +00:00
|
|
|
$wgAutoloadClasses['MathCaptcha'] = dirname( __FILE__ ) . '/MathCaptcha.class.php';
|
2006-06-12 19:56:17 +00:00
|
|
|
|