1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-25 19:11:47 +02:00

[ticket/10042] GD CAPTCHA: Call phpbb_mt_rand() where required.

PHPBB3-10042
This commit is contained in:
Andreas Fischer
2011-03-05 22:21:45 +01:00
parent c6c2a23ecb
commit 18daf6345f

@@ -77,7 +77,7 @@ class captcha
{
$denom = ($code_len - $i);
$denom = max(1.3, $denom);
$offset[$i] = mt_rand(0, (int) round((1.5 * $width_avail) / $denom));
$offset[$i] = phpbb_mt_rand(0, (int) round((1.5 * $width_avail) / $denom));
$width_avail -= $offset[$i];
}