From ce2bc1fcd99c05839f4dfefe0aabdcca1e13da8d Mon Sep 17 00:00:00 2001 From: chicpro Date: Wed, 13 Mar 2013 16:21:27 +0900 Subject: [PATCH] =?UTF-8?q?#392=20=EC=97=90=20=EB=94=B0=EB=A5=B8=20?= =?UTF-8?q?=EA=B2=8C=EC=8B=9C=EA=B8=80=EC=97=86=EC=9D=84=20=EB=95=8C=20?= =?UTF-8?q?=EC=B9=B4=ED=85=8C=EA=B3=A0=EB=A6=AC=20=EC=BF=BC=EB=A6=AC=20?= =?UTF-8?q?=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/list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bbs/list.php b/bbs/list.php index 77a8bc3b4..6a0877866 100644 --- a/bbs/list.php +++ b/bbs/list.php @@ -36,7 +36,7 @@ if ($sca || $stx) { // 가장 작은 번호를 얻어서 변수에 저장 (하단의 페이징에서 사용) $sql = " select MIN(wr_num) as min_wr_num from {$write_table} "; $row = sql_fetch($sql); - $min_spt = $row['min_wr_num']; + $min_spt = (int)$row['min_wr_num']; if (!$spt) $spt = $min_spt;