Merge pull request #1282 from YJSoft/YJSoft-iniget-pa

#1281 잘못 사용한 ini_get 수정
This commit is contained in:
bnu 2015-02-19 01:27:40 +09:00
commit 2cfe4a1d7d

View file

@ -355,7 +355,7 @@ class installController extends install
if(function_exists('xml_parser_create')) $checklist['xml'] = true;
else $checklist['xml'] = false;
// 3. Check if ini_get (session.auto_start) == 1
if(ini_get(session.auto_start)!=1) $checklist['session'] = true;
if(ini_get('session.auto_start')!=1) $checklist['session'] = true;
else $checklist['session'] = false;
// 4. Check if iconv exists
if(function_exists('iconv')) $checklist['iconv'] = true;