문법 오류 수정.

This commit is contained in:
bnu 2013-11-23 22:47:15 +09:00
parent 11a013ba40
commit 7623df3247

View file

@ -182,7 +182,7 @@ class installController extends install
foreach($scripts as $script) foreach($scripts as $script)
{ {
$script_path = FileHandler::getRealPath('./modules/install/script/'); $script_path = FileHandler::getRealPath('./modules/install/script/');
$output = include($script_path . $script)); $output = include($script_path . $script);
} }
} }
@ -528,7 +528,7 @@ class installController extends install
if($k == 'db_table_prefix' && !empty($v) && substr($v,-1)!='_') $v .= '_'; if($k == 'db_table_prefix' && !empty($v) && substr($v,-1)!='_') $v .= '_';
$buff[] = "'$k' => '$v',"; $buff[] = "'$k' => '$v',";
} }
$buff[] = '),'; $buff[] = ($with_array) ? '),' : ')';
} }
if($with_array) $buff[] = ')'; if($with_array) $buff[] = ')';