diff options
author | Greg Aker <greg.aker@ellislab.com> | 2011-04-20 00:13:03 +0200 |
---|---|---|
committer | Greg Aker <greg.aker@ellislab.com> | 2011-04-20 00:13:03 +0200 |
commit | f5c840241084e03d49e521bfcb62d2adbe9fce7d (patch) | |
tree | 5293805c077662e53439244d12e01f67cd80eaf3 /system/core/Controller.php | |
parent | 4488538665d37b07a08d7fe4ce6f4156a9899211 (diff) |
Altering the loader to be able to load views from packages when adding the package path with add_package_path().
Diffstat (limited to 'system/core/Controller.php')
-rw-r--r-- | system/core/Controller.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Controller.php b/system/core/Controller.php index 469663f09..fd9c8b580 100644 --- a/system/core/Controller.php +++ b/system/core/Controller.php @@ -50,7 +50,7 @@ class CI_Controller { $this->load->_base_classes =& is_loaded(); - $this->load->_ci_autoloader(); + $this->load->ci_autoloader(); log_message('debug', "Controller Class Initialized"); |