From 133b12c9dc98e4f1abe5a1ccb3138612f3837176 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Sat, 7 May 2005 11:01:26 +0000 Subject: [PATCH] fixed weird composite random number function --- includes/GlobalFunctions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 6234ecc8d7..ccc42f8991 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -162,7 +162,7 @@ function wfRandom() { # The maximum random value is "only" 2^31-1, so get two random # values to reduce the chance of dupes $max = mt_getrandmax(); - $rand = number_format( mt_rand() * mt_rand() + $rand = number_format( (mt_rand() * max + mt_rand()) / $max / $max, 12, '.', '' ); return $rand; } -- 2.20.1