mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 03:01:43 +09:00
#1281 잘못 사용한 ini_get 수정
ini_get은 인자로 string을 넘겨줘야 함에도 따옴표로 감싸지 않아 string으로 전달이 되지 않아 해당 ini값을 잘못 가져오는 문제가 있습니다. 따라서 session.auto_start값이 정상 체크되지 않아 XE 사용에 문제가 있을 수 있습니다.
This commit is contained in:
parent
5e6ea99795
commit
39f8c9ce42
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue