diff options
-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); } // -------------------------------------------------------------------- |