From 4d556548eb8f2d020d99b813758fc50706a1821a Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Sun, 8 May 2005 17:09:36 +0000 Subject: [PATCH] * Typo: missing $ --- includes/GlobalFunctions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 56151906b1..e1e9c2a617 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() * max + mt_rand()) + $rand = number_format( (mt_rand() * $max + mt_rand()) / $max / $max, 12, '.', '' ); return $rand; } -- 2.20.1