diff options
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 7bc9580c33..64fda22ac8 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -139,7 +139,7 @@ function gen_rand_string($num_chars) */ function unique_id($extra = 0) { - list($sec, $usec) = explode(' ', microtime()); + list($usec, $sec) = explode(' ', microtime()); mt_srand((float) $extra + (float) $sec + ((float) $usec * 100000)); return uniqid(mt_rand(), true); } |