diff options
author | vlakoff <vlakoff@gmail.com> | 2013-03-30 00:06:39 +0100 |
---|---|---|
committer | vlakoff <vlakoff@gmail.com> | 2013-03-30 00:06:53 +0100 |
commit | 0612756dd37a3472259a19814e1a9bb403ab6e11 (patch) | |
tree | 6ceebdd906d8b2f41ecc780a219e715d425c05ae /system/libraries/Upload.php | |
parent | cf58d7ec6ad81f6e67192ed04e816805942aa4f9 (diff) |
Some cleanup related to mt_rand()
- min and max values are 0 and mt_getrandmax() by default
- remove useless mt_srand() seed calls
Diffstat (limited to 'system/libraries/Upload.php')
-rw-r--r-- | system/libraries/Upload.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/system/libraries/Upload.php b/system/libraries/Upload.php index 1c14f99ed..1fe49d8a6 100644 --- a/system/libraries/Upload.php +++ b/system/libraries/Upload.php @@ -604,7 +604,6 @@ class CI_Upload { { if ($this->encrypt_name === TRUE) { - mt_srand(); $filename = md5(uniqid(mt_rand())).$this->file_ext; } |