aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/captcha/captcha_non_gd.php
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2006-12-03 17:36:59 +0000
committerDavid M <davidmj@users.sourceforge.net>2006-12-03 17:36:59 +0000
commitec80eb74aa5874f8790c3435bf4dd9fdf9614c6f (patch)
tree8f42fed41f0e463dd60d499674489edce609d072 /phpBB/includes/captcha/captcha_non_gd.php
parent1f7224c6019be5871f8385c6bb4403fd6ea28563 (diff)
downloadforums-ec80eb74aa5874f8790c3435bf4dd9fdf9614c6f.tar
forums-ec80eb74aa5874f8790c3435bf4dd9fdf9614c6f.tar.gz
forums-ec80eb74aa5874f8790c3435bf4dd9fdf9614c6f.tar.bz2
forums-ec80eb74aa5874f8790c3435bf4dd9fdf9614c6f.tar.xz
forums-ec80eb74aa5874f8790c3435bf4dd9fdf9614c6f.zip
#5734
- replaced array_rand($array) with mt_rand(0, sizeof($array) - 1) as array_rand did not take my seed git-svn-id: file:///svn/phpbb/trunk@6705 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/captcha/captcha_non_gd.php')
-rw-r--r--phpBB/includes/captcha/captcha_non_gd.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/phpBB/includes/captcha/captcha_non_gd.php b/phpBB/includes/captcha/captcha_non_gd.php
index 41bd22868e..bb4e5af443 100644
--- a/phpBB/includes/captcha/captcha_non_gd.php
+++ b/phpBB/includes/captcha/captcha_non_gd.php
@@ -30,15 +30,14 @@ class captcha
}
/**
- * Create the image containing $code
+ * Create the image containing $code with a seed of $seed
*/
- function execute($code)
+ function execute($code, $seed)
{
$img_height = $this->height - 10;
$img_width = 0;
- list($usec, $sec) = explode(' ', microtime());
- mt_srand($sec * $usec);
+ mt_srand($seed);
$char_widths = $hold_chars = array();
$code_len = strlen($code);