1
|
<?php
|
2
|
|
3
|
// $Id: calc_text.php 2 2017-07-02 15:14:29Z Manuela $
|
4
|
|
5
|
/*
|
6
|
|
7
|
Website Baker Project <http://www.websitebaker.org/>
|
8
|
Copyright (C) 2004-2009, Ryan Djurovich
|
9
|
|
10
|
Website Baker is free software; you can redistribute it and/or modify
|
11
|
it under the terms of the GNU General Public License as published by
|
12
|
the Free Software Foundation; either version 2 of the License, or
|
13
|
(at your option) any later version.
|
14
|
|
15
|
Website Baker is distributed in the hope that it will be useful,
|
16
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
17
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
18
|
GNU General Public License for more details.
|
19
|
|
20
|
You should have received a copy of the GNU General Public License
|
21
|
along with Website Baker; if not, write to the Free Software
|
22
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
23
|
|
24
|
*/
|
25
|
|
26
|
// Must include code to stop this file being accessed directly
|
27
|
if(defined('WB_PATH') == false) { exit("Cannot access this file directly"); }
|
28
|
|
29
|
if(!file_exists(WB_PATH.'/modules/captcha_control/languages/'.LANGUAGE .'.php')) {
|
30
|
// no module language file exists for the language set by the user, include default module language file EN.php
|
31
|
require_once(WB_PATH.'/modules/captcha_control/languages/EN.php');
|
32
|
} else {
|
33
|
// a module language file exists for the language defined by the user, load it
|
34
|
require_once(WB_PATH.'/modules/captcha_control/languages/'.LANGUAGE .'.php');
|
35
|
}
|
36
|
|
37
|
$_SESSION['captcha'.$sec_id] = '';
|
38
|
mt_srand((double)microtime()*1000000);
|
39
|
$n = mt_rand(1,3);
|
40
|
switch ($n) {
|
41
|
case 1:
|
42
|
$x = mt_rand(1,9);
|
43
|
$y = mt_rand(1,9);
|
44
|
$_SESSION['captcha'.$sec_id] = $x + $y;
|
45
|
$cap = "$x {$MOD_CAPTCHA['ADDITION']} $y";
|
46
|
break;
|
47
|
case 2:
|
48
|
$x = mt_rand(10,20);
|
49
|
$y = mt_rand(1,9);
|
50
|
$_SESSION['captcha'.$sec_id] = $x - $y;
|
51
|
$cap = "$x {$MOD_CAPTCHA['SUBTRAKTION']} $y";
|
52
|
break;
|
53
|
case 3:
|
54
|
$x = mt_rand(2,10);
|
55
|
$y = mt_rand(2,5);
|
56
|
$_SESSION['captcha'.$sec_id] = $x * $y;
|
57
|
$cap = "$x {$MOD_CAPTCHA['MULTIPLIKATION']} $y";
|
58
|
break;
|
59
|
}
|
60
|
echo $cap;
|
61
|
|