diff options
author | Shane Pearson <bubbafoley@gmail.com> | 2011-08-23 01:52:19 +0200 |
---|---|---|
committer | Shane Pearson <bubbafoley@gmail.com> | 2011-08-23 01:52:19 +0200 |
commit | 665baec264c04fb3284e313d59e102b2bf041e37 (patch) | |
tree | 6763e758eb021ca5f684e6733773972c2dd28f77 /system | |
parent | ff390b9c43f33ee734b5e8abc754539799a19357 (diff) |
make _ci_autoloader() protected so it can be properly extended.
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 452dc0b4c..de0fc06d2 100755 --- a/system/core/Loader.php +++ b/system/core/Loader.php @@ -1106,7 +1106,7 @@ class CI_Loader { * @param array * @return void */ - private function _ci_autoloader() + protected function _ci_autoloader() { if (defined('ENVIRONMENT') AND file_exists(APPPATH.'config/'.ENVIRONMENT.'/autoload.php')) { |