diff options
author | Andrey Andreev <narf@devilix.net> | 2017-12-27 18:49:03 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2017-12-27 18:50:15 +0100 |
commit | fbe4d79ca0a70f404dce628d66deeaa3d90a2225 (patch) | |
tree | 4626010d3821b8c0c3e10676ea88dfda953ad47e /system/libraries/Session | |
parent | 20d9b0a9c03955da0010a3df91adcd9b8e6e7d58 (diff) |
Merge pull request #5367 from carusogabriel/clean-elses
Clean elses
Diffstat (limited to 'system/libraries/Session')
-rw-r--r-- | system/libraries/Session/Session.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/system/libraries/Session/Session.php b/system/libraries/Session/Session.php index eb433de64..bf22227d8 100644 --- a/system/libraries/Session/Session.php +++ b/system/libraries/Session/Session.php @@ -241,10 +241,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; |