mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
인스톨시 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:
parent
a16874dc8a
commit
5461e7249c
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue