summaryrefslogtreecommitdiffstats
path: root/system/libraries/Session
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2017-12-27 18:49:03 +0100
committerGitHub <noreply@github.com>2017-12-27 18:49:03 +0100
commit3b470a6934a030c4bc57ac4c070539b5dd3e13b9 (patch)
tree5cca7a57a296006e09773b553a8159cc37316445 /system/libraries/Session
parentfbae310a44e5d6fb3f962d148c80a60cd38c884a (diff)
parent7774e3846c525ff65c6d9b86aacb1cc3bc229e3e (diff)
Merge pull request #5367 from carusogabriel/clean-elses
Clean elses
Diffstat (limited to 'system/libraries/Session')
-rw-r--r--system/libraries/Session/Session.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/system/libraries/Session/Session.php b/system/libraries/Session/Session.php
index 3e4865cd1..406b9a219 100644
--- a/system/libraries/Session/Session.php
+++ b/system/libraries/Session/Session.php
@@ -222,10 +222,8 @@ class CI_Session {
{
return $prefix.$class;
}
- else
- {
- log_message('debug', 'Session: '.$prefix.$class.".php found but it doesn't declare class ".$prefix.$class.'.');
- }
+
+ log_message('debug', 'Session: '.$prefix.$class.".php found but it doesn't declare class ".$prefix.$class.'.');
}
return 'CI_'.$class;