From 52f7eef288b4f4f79f106bf37ed48d04d1e673a3 Mon Sep 17 00:00:00 2001 From: projectSylas Date: Wed, 29 Dec 2021 11:37:29 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B3=B5=EC=A7=80=EA=B8=80=EC=9D=B4=20?= =?UTF-8?q?=EC=97=86=EC=9D=84=EB=95=8C=20=EB=82=98=EC=98=A4=EB=8A=94=20?= =?UTF-8?q?=EC=98=A4=EB=A5=98=20Trying=20to=20access=20array=20offset=20on?= =?UTF-8?q?=20value=20of=20type=20null=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bbs/list.php b/bbs/list.php index 9a18a393b..208a51d45 100644 --- a/bbs/list.php +++ b/bbs/list.php @@ -96,7 +96,7 @@ if (!$is_search_bbs) { $row = sql_fetch(" select * from {$write_table} where wr_id = '{$arr_notice[$k]}' "); - if (!$row['wr_id']) continue; + if (!isset($row['wr_id']) || !$row['wr_id']) continue; $notice_array[] = $row['wr_id'];