2005-10-14 05:07:24 +00:00
|
|
|
<?php
|
2006-01-27 08:00:32 +00:00
|
|
|
/**
|
|
|
|
* Experimental image-based captcha plugin, using images generated by an
|
|
|
|
* external tool.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005, 2006 Brion Vibber <brion@pobox.com>
|
|
|
|
* http://www.mediawiki.org/
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
2007-01-20 15:10:35 +00:00
|
|
|
* @addtogroup Extensions
|
2006-01-27 08:00:32 +00:00
|
|
|
*/
|
2005-10-14 05:07:24 +00:00
|
|
|
|
2007-11-12 07:42:25 +00:00
|
|
|
if ( !defined( 'MEDIAWIKI' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
2005-10-14 05:07:24 +00:00
|
|
|
|
|
|
|
global $wgCaptchaDirectory;
|
|
|
|
$wgCaptchaDirectory = "$wgUploadDirectory/captcha"; // bad default :D
|
|
|
|
|
2007-02-19 20:09:03 +00:00
|
|
|
global $wgCaptchaDirectoryLevels;
|
|
|
|
$wgCaptchaDirectoryLevels = 0; // To break into subdirectories
|
|
|
|
|
2005-10-14 05:07:24 +00:00
|
|
|
global $wgCaptchaSecret;
|
|
|
|
$wgCaptchaSecret = "CHANGE_THIS_SECRET!";
|
|
|
|
|
2009-07-19 15:13:01 +00:00
|
|
|
$wgExtensionMessagesFiles['FancyCaptcha'] = dirname( __FILE__ ) . '/FancyCaptcha.i18n.php';
|
2008-11-30 03:15:22 +00:00
|
|
|
$wgAutoloadClasses['FancyCaptcha'] = dirname( __FILE__ ) . '/FancyCaptcha.class.php';
|