diff options
author | versalle88 <andrew.versalle@gmail.com> | 2016-02-23 17:46:08 +0100 |
---|---|---|
committer | versalle88 <andrew.versalle@gmail.com> | 2016-02-23 17:46:08 +0100 |
commit | 17c52eaef97a58545004b49141689ef612c9456c (patch) | |
tree | 922d2820f9948fde066eac46045734b23dac73ba /system/libraries/Session | |
parent | 7230d5dea1e2fa6b242df2b840ad2dc54f0306b0 (diff) |
Changed calls to class_exists to ignore __autoload() to match other calls
Diffstat (limited to 'system/libraries/Session')
-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 c6413c102..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, FAlSE) && 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)) |