mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-06 18:42:15 +09:00
Merge pull request #1282 from YJSoft/YJSoft-iniget-pa
#1281 잘못 사용한 ini_get 수정
This commit is contained in:
commit
2cfe4a1d7d
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