diff options
author | Nils Adermann <naderman@naderman.de> | 2005-12-30 11:09:16 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2005-12-30 11:09:16 +0000 |
commit | c4bf44e579178f8628a8d57265fcafc58f59fb22 (patch) | |
tree | 431db8610dfccc3203b03ce1086e98c6f0d1203b /phpBB/includes/functions_messenger.php | |
parent | a63687d13f5553913f09706fa9f2c84b4de235fd (diff) | |
download | forums-c4bf44e579178f8628a8d57265fcafc58f59fb22.tar forums-c4bf44e579178f8628a8d57265fcafc58f59fb22.tar.gz forums-c4bf44e579178f8628a8d57265fcafc58f59fb22.tar.bz2 forums-c4bf44e579178f8628a8d57265fcafc58f59fb22.tar.xz forums-c4bf44e579178f8628a8d57265fcafc58f59fb22.zip |
- mt_srand in unique_id working properly (swapped usec and sec)
- mt_srand in digest_md5 removed
git-svn-id: file:///svn/phpbb/trunk@5403 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_messenger.php')
-rw-r--r-- | phpBB/includes/functions_messenger.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/phpBB/includes/functions_messenger.php b/phpBB/includes/functions_messenger.php index f9ce062d0b..895c6c078b 100644 --- a/phpBB/includes/functions_messenger.php +++ b/phpBB/includes/functions_messenger.php @@ -1162,7 +1162,6 @@ class smtp_class if (!empty($md5_challenge)) { $str = ''; - mt_srand( (double) microtime() * 10000000); for ($i = 0; $i < 32; $i++) { $str .= chr(mt_rand(0, 255)); |