Browse Source

Remove the seed for srand it is done automatically

FusionPBX 2 years ago
parent
commit
ef0278c5a6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/classes/captcha.php

+ 1 - 1
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];