diff options
author | Greg Aker <greg@gregaker.net> | 2011-08-21 23:35:37 +0200 |
---|---|---|
committer | Greg Aker <greg@gregaker.net> | 2011-08-21 23:35:37 +0200 |
commit | 60051f273a4f34f679e7d2627dc7af7f130ac102 (patch) | |
tree | 9c3f806ea48beda7272b33bf66f17b8fde7c32c5 /system | |
parent | ee7363bb48e613d17566e82c6025ad71d39aa104 (diff) | |
parent | 644ed9000c39289a66d8b52f10d54168f006b717 (diff) |
Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop
Diffstat (limited to 'system')
-rwxr-xr-x | system/core/Loader.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Loader.php b/system/core/Loader.php index e7fa3d3f6..452dc0b4c 100755 --- a/system/core/Loader.php +++ b/system/core/Loader.php @@ -127,7 +127,7 @@ class CI_Loader { $this->_ci_library_paths = array(APPPATH, BASEPATH); $this->_ci_helper_paths = array(APPPATH, BASEPATH); $this->_ci_model_paths = array(APPPATH); - $this->_ci_view_paths = array(APPPATH.'views/' => TRUE); + $this->_ci_view_paths = array(VIEWPATH => TRUE); log_message('debug', "Loader Class Initialized"); } |