php deprecated 사용되는 코드 재수정

This commit is contained in:
thisgun
2020-03-03 18:46:17 +09:00
parent b28796dd28
commit a8292a51bd
3 changed files with 3 additions and 3 deletions

View File

@ -337,7 +337,7 @@ for($i=0; $row=sql_fetch_array($result); $i++) {
// 게시판 테이블 생성
$bo_table = $row['bo_table'];
$file = file(G5_ADMIN_PATH.'/sql_write.sql');
$sql = implode($file, "\n");
$sql = implode("\n", $file);
$create_table = $g5['write_prefix'] . $bo_table;