diff options
-rw-r--r-- | system/libraries/Session.php | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/system/libraries/Session.php b/system/libraries/Session.php index b6c53c71d..5f4f60547 100644 --- a/system/libraries/Session.php +++ b/system/libraries/Session.php @@ -672,11 +672,8 @@ class CI_Session { { $cookie_data = $this->CI->encrypt->encode($cookie_data); } - else - { - // if encryption is not used, we provide an md5 hash to prevent userside tampering - $cookie_data .= hash_hmac('sha1', $cookie_data, $this->encryption_key); - } + + $cookie_data .= hash_hmac('sha1', $cookie_data, $this->encryption_key); $expire = ($this->sess_expire_on_close === TRUE) ? 0 : $this->sess_expiration + time(); |