일부 파일에 변수 초기화 코드 추가

This commit is contained in:
thisgun
2021-04-30 10:03:29 +09:00
parent 33120a85c3
commit 4ae5040db8
2 changed files with 6 additions and 0 deletions

View File

@ -41,6 +41,9 @@ else if ($is_admin == 'board')
$sql .= " and a.bo_admin = '{$member['mb_id']}' ";
$sql .= " order by a.gr_id, a.bo_order, a.bo_table ";
$result = sql_query($sql);
$list = array();
for ($i=0; $row=sql_fetch_array($result); $i++)
{
$list[$i] = $row;