diff options
author | Rick Ellis <rick.ellis@ellislab.com> | 2007-02-05 23:36:56 +0100 |
---|---|---|
committer | Rick Ellis <rick.ellis@ellislab.com> | 2007-02-05 23:36:56 +0100 |
commit | 085c00ff6948bd21e72d24c53457f3bbf2274985 (patch) | |
tree | 71786f75f932b0970209e4b62a7d48666303fec3 /system/libraries/Loader.php | |
parent | 6fdadfa1593623cafaecad06f5bbb533b44c9a02 (diff) |
Diffstat (limited to 'system/libraries/Loader.php')
-rw-r--r-- | system/libraries/Loader.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/libraries/Loader.php b/system/libraries/Loader.php index 0947046ed..f76146ffd 100644 --- a/system/libraries/Loader.php +++ b/system/libraries/Loader.php @@ -499,10 +499,10 @@ class CI_Loader { * @param string * @return void */ - function config($file = '') - { + function config($file = '', $use_sections = FALSE, $fail_gracefully = FALSE) + { $CI =& get_instance(); - $CI->config->load($file); + $CI->config->load($file, $use_sections, $fail_gracefully); } // -------------------------------------------------------------------- |