diff --git a/Generator/CaptchaGenerator.php b/Generator/CaptchaGenerator.php index 07ba063..58ff58a 100644 --- a/Generator/CaptchaGenerator.php +++ b/Generator/CaptchaGenerator.php @@ -77,7 +77,7 @@ class CaptchaGenerator // Returns the image generation URL if ($options['as_url']) { return $this->router->generate('gregwar_captcha.generate_captcha', - array('key' => $options['session_key'], 'n' => md5(microtime(true).rand(0, 9)))); + array('key' => $options['session_key'], 'n' => md5(microtime(true).mt_rand()))); } return 'data:image/jpeg;base64,' . base64_encode($this->generate($options));