diff options
author | admin <devnull@localhost> | 2006-09-02 19:46:15 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-09-02 19:46:15 +0200 |
commit | 6ac4bea2da9e64fb0b434f52177353f6bd65b8e6 (patch) | |
tree | e9c415452c56c49c68ca6d50bd68c3e4a879925b /system | |
parent | 108d18acae3cf6e6e05afe2526eca97bfabcb4ad (diff) |
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/Loader.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Loader.php b/system/libraries/Loader.php index f005adcf0..e2467fa64 100644 --- a/system/libraries/Loader.php +++ b/system/libraries/Loader.php @@ -478,7 +478,7 @@ class CI_Loader { if ($path == '') { $ext = pathinfo($view, PATHINFO_EXTENSION); - $file = ($ext != '') ? $view.EXT : $view; + $file = ($ext == '') ? $view.EXT : $view; $path = $this->view_path.$file; } else |