diff options
author | admin <devnull@localhost> | 2006-08-26 21:28:37 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-08-26 21:28:37 +0200 |
commit | b071bb5a92aade551345a495fb13f5678f3978d0 (patch) | |
tree | 803575f71b327ad5782206331d82bf5c6dfc0cc0 /system/libraries/Loader.php | |
parent | e07fbb376a741e21e69a182eada322c4d3b7e62e (diff) |
Diffstat (limited to 'system/libraries/Loader.php')
-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 e2467fa64..3d2501fc0 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 != EXT) ? $view.EXT : $view; $path = $this->view_path.$file; } else |