From 8198038055cee2d822e23f29edf5fc0dea43c62c Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Wed, 16 Oct 2019 22:29:33 +0900 Subject: [PATCH] Update config.php --- system/config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/config.php b/system/config.php index ecdd8c2..19e74bc 100644 --- a/system/config.php +++ b/system/config.php @@ -16,7 +16,7 @@ if(!check_function_exists("read_config")) { foreach($files as $file) { $ini = array(); - // `parse_ini_string` function is not supported under 5.3.0. if you use legacy, please use `.ini` file only. + // `parse_ini_string` function is not supported under 5.3.0. Use only 'ini' file if(!$is_legacy_version && check_file_extension($file, "ini.php", array("multiple" => true))) { $ini = parse_ini_string($str); } elseif(check_file_extension($file, "ini")) { @@ -104,7 +104,7 @@ if(!check_function_exists("get_current_datetime")) { } // get timestamp - $timestamp = get_current_timestamp($options);' + $timestamp = get_current_timestamp($options); // set datetime $datetime = date($timeformat, $timestamp);