diff options
author | Andrey Andreev <narf@devilix.net> | 2015-03-13 10:25:29 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2015-03-13 10:25:29 +0100 |
commit | 1d19520c7bc40280050b59e05a212ecedd9edd53 (patch) | |
tree | f12236674b3146f81215a07d4f4e0648146639f9 | |
parent | cc778886ef9cc0b03c8a622163f1e80eaac340d3 (diff) |
[ci skip] Remove NS usage in CI_Session
It was accidental
-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 54d31ee1a..bb457c659 100644 --- a/system/libraries/Session/Session.php +++ b/system/libraries/Session/Session.php @@ -227,7 +227,7 @@ class CI_Session { if ( ! class_exists('CI_'.$class, FALSE) && ! class_exists($class, FALSE)) { - throw new \UnexpectedValueException("Session: Configured driver '".$driver."' was not found. Aborting."); + throw new UnexpectedValueException("Session: Configured driver '".$driver."' was not found. Aborting."); } } |