From b6a10d4a0db2961221773a0135cebebd233b07df Mon Sep 17 00:00:00 2001 From: chicpro Date: Mon, 8 Apr 2013 13:24:43 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B2=8C=EC=8B=9C=ED=8C=90=20=ED=8F=AD=20?= =?UTF-8?q?=EC=A7=80=EC=A0=95=EC=8B=9C=20px=20=EB=B6=99=EC=A7=80=20?= =?UTF-8?q?=EC=95=8A=EB=8A=94=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/board.php | 5 ++++- bbs/write.php | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bbs/board.php b/bbs/board.php index 34c8c7b88..013eff092 100644 --- a/bbs/board.php +++ b/bbs/board.php @@ -129,7 +129,10 @@ if (isset($wr_id) && $wr_id) { include_once(G4_PATH.'/head.sub.php'); $width = $board['bo_table_width']; -if ($width <= 100) $width .= '%'; +if ($width <= 100) + $width .= '%'; +else + $width .='px'; // IP보이기 사용 여부 $ip = ""; diff --git a/bbs/write.php b/bbs/write.php index 72f82b978..5159cfb9b 100644 --- a/bbs/write.php +++ b/bbs/write.php @@ -338,6 +338,8 @@ $upload_max_filesize = number_format($board['bo_upload_size']) . ' 바이트'; $width = $board['bo_table_width']; if ($width <= 100) $width .= '%'; +else + $width .= 'px'; $captcha_html = ''; $captcha_js = '';