From bdb1ab852d01a0441129dd065a2cb5eb061cef29 Mon Sep 17 00:00:00 2001 From: "jw2(kit rio)" Date: Mon, 13 Jun 2022 13:54:34 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B2=8C=EC=8B=9C=EB=AC=BC=20=ED=8C=8C?= =?UTF-8?q?=EC=9D=BC=20=EC=97=85=EB=A1=9C=EB=93=9C=EC=8B=9C=20=20undefined?= =?UTF-8?q?=20variable=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 파일 테이블의 필드를 이름으로 하는 배열을 설정합니다. --- bbs/write.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bbs/write.php b/bbs/write.php index f547d4789..2192934ca 100644 --- a/bbs/write.php +++ b/bbs/write.php @@ -347,7 +347,7 @@ if ($w == '') { for($i=0;$i<$file_count;$i++){ if(! isset($file[$i])) { - $file[$i] = array('file'=>null, 'source'=>null, 'size'=>null); + $file[$i] = array('file'=>null, 'source'=>null, 'size'=>null, 'bf_content' => null); } } @@ -442,4 +442,4 @@ include_once ($board_skin_path.'/write.skin.php'); include_once('./board_tail.php'); @include_once ($board_skin_path.'/write.tail.skin.php'); -include_once(G5_PATH.'/tail.sub.php'); \ No newline at end of file +include_once(G5_PATH.'/tail.sub.php');