Whitespace fixes

This commit is contained in:
Niklas Laxström 2010-09-11 20:27:40 +00:00
parent 71b61a25b7
commit 52dc3a4b55

View 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 );
}
/**