Merge pull request #378 from smaker/php54

PHP 5.4에서 발생하는 호환성 문제 수정
This commit is contained in:
sungbum hong 2014-01-28 02:04:44 -08:00
commit 6a1614f396
5 changed files with 18 additions and 1 deletions

View file

@ -196,7 +196,7 @@ class installAdminController extends install
$ftp_info->ftp_password = Context::get('ftp_password');
}
$buff = '<?php if(!defined("__XE__")) exit();'."\n";
$buff = '<?php if(!defined("__XE__")) exit();'."\n\$ftp_info = new stdClass;\n";
foreach($ftp_info as $key => $val)
{
if(!$val) continue;