인스톨시 php version check 수정

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@13189 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
akasima 2013-11-08 06:37:44 +00:00
parent a16874dc8a
commit 5461e7249c

View file

@ -329,8 +329,8 @@ class installController extends install
{
// Check each item
$checklist = array();
// 0. check your version of php (5.2.2 is not supported)
if(phpversion()=='5.2.2') $checklist['php_version'] = false;
// 0. check your version of php (5.2.4 upper)
if(version_compare(phpversion(), '5.2.4') == -1) $checklist['php_version'] = false;
else $checklist['php_version'] = true;
// 1. Check permission
if(is_writable('./')||is_writable('./files')) $checklist['permission'] = true;