diff options
author | admin <devnull@localhost> | 2006-09-02 19:43:16 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-09-02 19:43:16 +0200 |
commit | 337b270b6e566e81d3ee3b5575a3f274c000b459 (patch) | |
tree | bc56a0841a4f27c05dc07a96c6e4a76370263488 /system/libraries | |
parent | 2ed76d5ac89ec7869dcb64c050360fb2f99e9326 (diff) |
Diffstat (limited to 'system/libraries')
-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 3d2501fc0..f005adcf0 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 != EXT) ? $view.EXT : $view; + $file = ($ext != '') ? $view.EXT : $view; $path = $this->view_path.$file; } else |