diff options
author | vlakoff <vlakoff@gmail.com> | 2013-10-17 22:22:16 +0200 |
---|---|---|
committer | vlakoff <vlakoff@gmail.com> | 2013-10-17 22:22:16 +0200 |
commit | 3a3d5f6c2320a90436de241af41fe22df7344728 (patch) | |
tree | af1d16596d7a92f98187bb0d9a1006fe86680bf4 /system/database/DB_driver.php | |
parent | 3d759d73d441655bbf7b441dadd87a10d6732855 (diff) |
Replace the last rand() with mt_rand()
Better entropy, faster.
Also fixed a few "it's" typos.
Diffstat (limited to 'system/database/DB_driver.php')
-rw-r--r-- | system/database/DB_driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php index 53decf014..618f3660c 100644 --- a/system/database/DB_driver.php +++ b/system/database/DB_driver.php @@ -1135,7 +1135,7 @@ abstract class CI_DB_driver { else { /* We have no other choice but to just get the first element's key. - * Due to array_shift() accepting it's argument by reference, if + * Due to array_shift() accepting its argument by reference, if * E_STRICT is on, this would trigger a warning. So we'll have to * assign it first. */ |