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 = '';