From 019ca725d8b50ee44839743945824d83154f23ae Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Wed, 26 Apr 2023 13:40:05 -0600 Subject: [PATCH] Remove the seed for srand it is done automatically --- resources/classes/captcha.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/classes/captcha.php b/resources/classes/captcha.php index 8caab89531..9eafc18042 100644 --- a/resources/classes/captcha.php +++ b/resources/classes/captcha.php @@ -87,7 +87,7 @@ class captcha { //exit; // Randomize the fonts - srand(uuid()); + srand(); $random = (rand()%count($fonts)); //$font = $font_path.'/'.$fonts[$random]; $font = $fonts[$random];