#1281 잘못 사용한 ini_get 수정

ini_get은 인자로 string을 넘겨줘야 함에도 따옴표로 감싸지 않아 string으로 전달이 되지 않아 해당 ini값을 잘못 가져오는 문제가 있습니다.
따라서 session.auto_start값이 정상 체크되지 않아 XE 사용에 문제가 있을 수 있습니다.
This commit is contained in:
YJSoft 2015-02-18 19:49:16 +09:00
parent 5e6ea99795
commit 39f8c9ce42

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;