diff options
Diffstat (limited to 'includes/UIDGenerator.php')
-rw-r--r-- | includes/UIDGenerator.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/UIDGenerator.php b/includes/UIDGenerator.php index b042d8c7181c..6219b3dc8e3b 100644 --- a/includes/UIDGenerator.php +++ b/includes/UIDGenerator.php @@ -304,7 +304,7 @@ class UIDGenerator { if ( $ct >= $time ) { // http://php.net/manual/en/language.operators.comparison.php return $ct; // current timestamp is higher than $time } - } while ( ( ( $time[0] - $ct[0] )*1000 + ( $time[1] - $ct[1] ) ) <= 10 ); + } while ( ( ( $time[0] - $ct[0] ) * 1000 + ( $time[1] - $ct[1] ) ) <= 10 ); return false; } |