diff options
author | Rick Ellis <rick.ellis@ellislab.com> | 2008-08-22 09:16:47 +0200 |
---|---|---|
committer | Rick Ellis <rick.ellis@ellislab.com> | 2008-08-22 09:16:47 +0200 |
commit | edc41b55c343af2f03fb6fce6fd707c8b1b986fc (patch) | |
tree | e0b25d0a1968d0afcdae09d96fa51127e1d6ad4b | |
parent | f65308f36173d7924f1460e0383e5a6c46e626b5 (diff) |
Fixed a comment typo
-rw-r--r-- | system/libraries/Session.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Session.php b/system/libraries/Session.php index 9fad08cf9..ab14bfe1a 100644 --- a/system/libraries/Session.php +++ b/system/libraries/Session.php @@ -160,7 +160,7 @@ class CI_Session { // Unserialize the session array
$session = @unserialize(strip_slashes($session));
- // Is the session data we unserialized and array with the correct format?
+ // Is the session data we unserialized an array with the correct format?
if ( ! is_array($session) OR ! isset($session['session_id']) OR ! isset($session['ip_address']) OR ! isset($session['user_agent']) OR ! isset($session['last_activity']))
{
$this->sess_destroy();
|