summaryrefslogtreecommitdiffstats
path: root/system/libraries/Upload.php
diff options
context:
space:
mode:
authorvlakoff <vlakoff@gmail.com>2013-03-30 00:06:39 +0100
committervlakoff <vlakoff@gmail.com>2013-03-30 00:06:53 +0100
commit0612756dd37a3472259a19814e1a9bb403ab6e11 (patch)
tree6ceebdd906d8b2f41ecc780a219e715d425c05ae /system/libraries/Upload.php
parentcf58d7ec6ad81f6e67192ed04e816805942aa4f9 (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.php1
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;
}