mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 03:01:43 +09:00
문법 오류 수정.
This commit is contained in:
parent
11a013ba40
commit
7623df3247
1 changed files with 2 additions and 2 deletions
|
|
@ -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[] = ')';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue