diff options
author | Derek Jones <derek.jones@ellislab.com> | 2009-07-10 20:58:03 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2009-07-10 20:58:03 +0200 |
commit | c8dddd97b96f74ebf080fedde5a2630019783c78 (patch) | |
tree | a1afa316d835281accad6ea0c1c98a6629fec85e /system | |
parent | 16d40d713b1d8d924ac20b542d344552a4c29648 (diff) |
Simplified some conditional syntax
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/Loader.php | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/system/libraries/Loader.php b/system/libraries/Loader.php index 715bdf97c..d615a1363 100644 --- a/system/libraries/Loader.php +++ b/system/libraries/Loader.php @@ -868,12 +868,9 @@ class CI_Loader { { include_once(APPPATH.'config/'.strtolower($class).EXT); } - else + elseif (file_exists(APPPATH.'config/'.ucfirst(strtolower($class)).EXT)) { - if (file_exists(APPPATH.'config/'.ucfirst(strtolower($class)).EXT)) - { - include_once(APPPATH.'config/'.ucfirst(strtolower($class)).EXT); - } + include_once(APPPATH.'config/'.ucfirst(strtolower($class)).EXT); } } |