Merge branch 'master' of github.com:gnuboard/g4s

This commit is contained in:
whitedot
2013-04-08 16:10:43 +09:00
2 changed files with 6 additions and 1 deletions

View File

@ -129,7 +129,10 @@ if (isset($wr_id) && $wr_id) {
include_once(G4_PATH.'/head.sub.php'); include_once(G4_PATH.'/head.sub.php');
$width = $board['bo_table_width']; $width = $board['bo_table_width'];
if ($width <= 100) $width .= '%'; if ($width <= 100)
$width .= '%';
else
$width .='px';
// IP보이기 사용 여부 // IP보이기 사용 여부
$ip = ""; $ip = "";

View File

@ -338,6 +338,8 @@ $upload_max_filesize = number_format($board['bo_upload_size']) . ' 바이트';
$width = $board['bo_table_width']; $width = $board['bo_table_width'];
if ($width <= 100) if ($width <= 100)
$width .= '%'; $width .= '%';
else
$width .= 'px';
$captcha_html = ''; $captcha_html = '';
$captcha_js = ''; $captcha_js = '';