diff options
author | versalle88 <andrew.versalle@gmail.com> | 2016-02-23 17:48:04 +0100 |
---|---|---|
committer | versalle88 <andrew.versalle@gmail.com> | 2016-02-23 17:48:04 +0100 |
commit | 82d5c231d55aa290a2739d01055a9b8e6c8243a6 (patch) | |
tree | 922d2820f9948fde066eac46045734b23dac73ba | |
parent | 1e4e75421ec0fd00b75de1b34ca60d84b300e050 (diff) |
Fixed typo
-rw-r--r-- | system/libraries/Session/Session.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Session/Session.php b/system/libraries/Session/Session.php index b93c00c15..77c56ae70 100644 --- a/system/libraries/Session/Session.php +++ b/system/libraries/Session/Session.php @@ -231,7 +231,7 @@ class CI_Session { } } - if ( ! class_exists($prefix.$class) && file_exists($file_path = APPPATH.'libraries/Session/drivers/'.$prefix.$class.'.php')) + if ( ! class_exists($prefix.$class, FALSE) && file_exists($file_path = APPPATH.'libraries/Session/drivers/'.$prefix.$class.'.php')) { require_once($file_path); if (class_exists($prefix.$class, FALSE)) |