diff options
author | Eric Barnes <eric@ericlbarnes.com> | 2011-08-21 23:35:07 +0200 |
---|---|---|
committer | Eric Barnes <eric@ericlbarnes.com> | 2011-08-21 23:35:07 +0200 |
commit | 644ed9000c39289a66d8b52f10d54168f006b717 (patch) | |
tree | add34415d01955cd350e5ef6c993aeb021954c9b /system | |
parent | 597aff7b9358135ca2566164541267650466b693 (diff) | |
parent | 393377fd247f38d57a7324515b57fed5d84b28ff (diff) |
Merge pull request #235 from JoeCianflone/develop
Ability to move the view folder out of the Application directory
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"); } |