diff options
author | W. Kristianto <w.kristories@gmail.com> | 2012-09-23 17:34:18 +0200 |
---|---|---|
committer | W. Kristianto <w.kristories@gmail.com> | 2012-09-23 17:34:18 +0200 |
commit | a5e329ff95e0308c07b8db04117f056081997796 (patch) | |
tree | 627b920d0f0cacf3f4331db91c1fef00c6ae7eae | |
parent | 3596558b4e9e95ebb1652388c8268d02c46a1b7b (diff) |
Update user_guide_src/source/libraries/loader.rst
Remove the second parameter
-rw-r--r-- | user_guide_src/source/libraries/loader.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide_src/source/libraries/loader.rst b/user_guide_src/source/libraries/loader.rst index 33c1bafec..615aba1c2 100644 --- a/user_guide_src/source/libraries/loader.rst +++ b/user_guide_src/source/libraries/loader.rst @@ -344,6 +344,6 @@ calling add_package_path(). $this->load->remove_package_path(APPPATH.'my_app'); // Again without the second parameter: - $this->load->add_package_path(APPPATH.'my_app', TRUE); + $this->load->add_package_path(APPPATH.'my_app'); $this->load->view('my_app_index'); // Loads $this->load->view('welcome_message'); // Loads |