~ubuntu-branches/ubuntu/saucy/mediawiki-extensions/saucy

« back to all changes in this revision

Viewing changes to dist/mediawiki-extensions-confirmedit/usr/share/mediawiki-extensions/confirmedit/FancyCaptcha.php

  • Committer: Bazaar Package Importer
  • Author(s): Romain Beauxis
  • Date: 2010-05-04 15:13:35 UTC
  • mfrom: (0.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100504151335-54qeucg3ec108q28
Tags: 2.2
* Added Replaces:/Conflicts: to allow a proper upgrade.
Closes: #580066
* Fixed package descriptions.
Closes: #579667
* Patched mediawiki-extensions-fckeditor to make it work with
  php 5.3. The fix may not be perfect but at least it work.
  Not closing the bug (#579822) for now..

Show diffs side-by-side

added added

removed removed

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