summaryrefslogtreecommitdiffstats
path: root/system/libraries/Session/drivers/Session_cookie.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2013-04-01 00:09:34 +0200
committerAndrey Andreev <narf@bofh.bg>2013-04-01 00:09:34 +0200
commit14e3523c60fd6c22d46c357c539e1954987bd744 (patch)
treed175a7e7f43599ae684e465fad1ad20ceb9ed972 /system/libraries/Session/drivers/Session_cookie.php
parent1af54e842b6b6e2aecd177b3cf6ae2e17be31f4a (diff)
parent0612756dd37a3472259a19814e1a9bb403ab6e11 (diff)
Merge pull request #2369 from vlakoff/develop-2
Some cleanup related to mt_rand()
Diffstat (limited to 'system/libraries/Session/drivers/Session_cookie.php')
-rw-r--r--system/libraries/Session/drivers/Session_cookie.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/system/libraries/Session/drivers/Session_cookie.php b/system/libraries/Session/drivers/Session_cookie.php
index 0e8644102..7174d63c8 100644
--- a/system/libraries/Session/drivers/Session_cookie.php
+++ b/system/libraries/Session/drivers/Session_cookie.php
@@ -641,7 +641,7 @@ class CI_Session_cookie extends CI_Session_driver {
$new_sessid = '';
do
{
- $new_sessid .= mt_rand(0, mt_getrandmax());
+ $new_sessid .= mt_rand();
}
while (strlen($new_sessid) < 32);
@@ -832,7 +832,6 @@ class CI_Session_cookie extends CI_Session_driver {
$probability = ini_get('session.gc_probability');
$divisor = ini_get('session.gc_divisor');
- srand(time());
if ((mt_rand(0, $divisor) / $divisor) < $probability)
{
$expire = $this->now - $this->sess_expiration;