Whitespace fixes
authorNiklas Laxström <nikerabbit@users.mediawiki.org>
Sat, 11 Sep 2010 20:27:40 +0000 (20:27 +0000)
committerNiklas Laxström <nikerabbit@users.mediawiki.org>
Sat, 11 Sep 2010 20:27:40 +0000 (20:27 +0000)
includes/GlobalFunctions.php

index fa982e0..7a861f3 100644 (file)
@@ -3331,9 +3331,8 @@ function wfCountDown( $n ) {
  *              characters before hashing.
  */
 function wfGenerateToken( $salt = '' ) {
-       $salt = serialize( $salt );
-
-       return md5( mt_rand( 0, 0x7fffffff ) . $salt );
+       $salt = serialize( $salt );
+       return md5( mt_rand( 0, 0x7fffffff ) . $salt );
 }
 
 /**