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/email_certify.php b/bbs/email_certify.php
index f689866a1..31c816d82 100644
--- a/bbs/email_certify.php
+++ b/bbs/email_certify.php
@@ -1,21 +1,21 @@
include_once('./_common.php');
-$sql = " select mb_id, mb_email, mb_datetime from {$g4[member_table]} where mb_id = '{$mb_id}' ";
+$sql = " select mb_id, mb_email, mb_datetime from {$g4['member_table']} where mb_id = '{$mb_id}' ";
$row = sql_fetch($sql);
-if (!$row[mb_id])
- alert('존재하는 회원이 아닙니다.', G4_PATH);
+if (!$row['mb_id'])
+ alert('존재하는 회원이 아닙니다.', G4_URL);
-if ($mb_md5)
+if ($mb_md5)
{
- $tmp_md5 = md5($row[mb_id].$row[mb_email].$row[mb_datetime]);
- if ($mb_md5 == $tmp_md5)
+ $tmp_md5 = md5($row['mb_id'].$row['mb_email'].$row['mb_datetime']);
+ if ($mb_md5 == $tmp_md5)
{
- sql_query(" update {$g4[member_table]} set mb_email_certify = '".G4_TIME_YMDHIS."' where mb_id = '{$mb_id}' ");
+ sql_query(" update {$g4['member_table']} set mb_email_certify = '".G4_TIME_YMDHIS."' where mb_id = '{$mb_id}' ");
- alert('E-mail 인증 처리를 완료 하였습니다.', G4_PATH);
+ alert('E-mail 인증 처리를 완료 하였습니다.', G4_URL);
}
}
-alert('제대로 된 값이 넘어오지 않았습니다.', G4_PATH);
+alert('제대로 된 값이 넘어오지 않았습니다.', G4_URL);
?>
\ No newline at end of file
diff --git a/bbs/password.php b/bbs/password.php
index 2751d8cc4..287032410 100644
--- a/bbs/password.php
+++ b/bbs/password.php
@@ -23,7 +23,7 @@ switch ($w) {
goto_url('./board.php?bo_table='.$bo_table.'&wr_id='.$wr_id);
else {
$action = './password_check.php';
- $return_url = $_SERVER['HTTP_REFERER'];
+ $return_url = './board.php?bo_table='.$bo_table;
}
break;
default :
diff --git a/bbs/register_form_update_mail3.php b/bbs/register_form_update_mail3.php
index b7cd690f5..3f5991b17 100644
--- a/bbs/register_form_update_mail3.php
+++ b/bbs/register_form_update_mail3.php
@@ -24,12 +24,12 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
=$mb_name?> 님의 E-mail 주소가 변경되었습니다.
아래의 주소를 클릭하시면 인증이 완료됩니다.
- =$certify_href?>
+ =$certify_href?>
회원님의 성원에 보답하고자 더욱 더 열심히 하겠습니다.
감사합니다.
- =$config['cf_title']?> 로그인
+ =$config['cf_title']?> 로그인
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 = '';
diff --git a/css/default.css b/css/default.css
index d936b2055..86a4bba9e 100644
--- a/css/default.css
+++ b/css/default.css
@@ -145,6 +145,7 @@ a:active {color:#000;text-decoration:underline}
.btn_confirm {text-align:center} /* 서식단계 진행 */
.btn_submit {padding:0 10px;height:24px;border:0;background:#333;color:#fff;letter-spacing:-0.1em;vertical-align:top;cursor:pointer}
button.btn_submit {height:22px !important;font-size:1em}
+fieldset .btn_submit {height:22px !important;font-size:1em}
.btn_cancel {display:inline-block;padding:0 10px;height:22px;border:1px solid #ccc;background:#fafafa;line-height:2em}
button.btn_cancel {display:inline-block;padding:0 10px;height:24px;border:1px solid #ccc;background:#fafafa;line-height:2em}
.btn_cancel:focus,
diff --git a/css/mobile.css b/css/mobile.css
index 83864f189..75deca984 100644
--- a/css/mobile.css
+++ b/css/mobile.css
@@ -94,7 +94,7 @@ pre {overflow-x:scroll;font-size:1.1em}
#ft_copy {background:#232323}
#ft_copy p {position:relative;padding:0.5em;color:#4a9ab8}
#ft_copy b {color:#fff}
-#ft_copy a {position:absolute;top:0.5em;right:0.5em;color:#fff;text-decoration:none}
+#ft_copy a {color:#fff;text-decoration:none}
/* PC화면으로 */
#g4s_cng {display:block;margin:0.3em;padding:0.5em 0;border:1px solid #eee;border-radius:2em;color:#000;font-size:1em;text-decoration:none;text-align:center}
diff --git a/mobile/skin/board/basic/list.skin.php b/mobile/skin/board/basic/list.skin.php
index 8d7cc4236..0325d804e 100644
--- a/mobile/skin/board/basic/list.skin.php
+++ b/mobile/skin/board/basic/list.skin.php
@@ -12,7 +12,7 @@ if ($is_nogood) $colspan++;
if (!$wr_id) {?>=$g4['title']?>
}?>
-" style="width:=$width;?>">
+
">
if ($is_category) { ?>
-
+
} ?>
diff --git a/skin/board/basic/style.css b/skin/board/basic/style.css
index 5e836b1f2..e9b257b52 100644
--- a/skin/board/basic/style.css
+++ b/skin/board/basic/style.css
@@ -86,7 +86,7 @@
.bo_v_com li {float:left;margin-left:5px}
#bo_v_atc {min-height:200px;height:auto !important;height:200px}
-#bo_v_atc h1 {margin:0;padding:0;height:0;overflow:hidden}
+#bo_v_atc header h1 {margin:0;padding:0;width:1px;height:1px;overflow:hidden}
#bo_v_img {margin:0 0 10px;width:100%;overflow:hidden:zoom:1}
#bo_v_img:after {display:block;visibility:hidden;clear:both;content:""}
diff --git a/skin/board/basic/view.skin.php b/skin/board/basic/view.skin.php
index 09cef2ce3..918a18c52 100644
--- a/skin/board/basic/view.skin.php
+++ b/skin/board/basic/view.skin.php
@@ -41,9 +41,9 @@ include_once(G4_LIB_PATH.'/thumbnail.lib.php');
?>
-
+
=$view['file'][$i]['source']?>
- (=$view['file'][$i]['size']?>)
+ =$view['file'][$i]['bf_content']?> (=$view['file'][$i]['size']?>)
=$view['file'][$i]['download']?>회 다운로드
DATE : =$view['file'][$i]['datetime']?>
diff --git a/skin/board/gallery/style.css b/skin/board/gallery/style.css
index 5df3788c8..06c560b61 100644
--- a/skin/board/gallery/style.css
+++ b/skin/board/gallery/style.css
@@ -108,7 +108,7 @@
.bo_v_com li {float:left;margin-left:5px}
#bo_v_atc {min-height:200px;height:auto !important;height:200px}
-#bo_v_atc h1 {margin:0;padding:0;height:0;overflow:hidden}
+#bo_v_atc header h1 {margin:0;padding:0;width:1px;height:1px;overflow:hidden}
#bo_v_img {margin:0 0 10px;width:100%;overflow:hidden:zoom:1}
#bo_v_img:after {display:block;visibility:hidden;clear:both;content:""}
diff --git a/skin/board/gallery/view.skin.php b/skin/board/gallery/view.skin.php
index c250885eb..7365151dd 100644
--- a/skin/board/gallery/view.skin.php
+++ b/skin/board/gallery/view.skin.php
@@ -41,9 +41,9 @@ include_once(G4_LIB_PATH.'/thumbnail.lib.php');
?>
-
+
=$view['file'][$i]['source']?>
- (=$view['file'][$i]['size']?>)
+ =$view['file'][$i]['bf_content']?> (=$view['file'][$i]['size']?>)
=$view['file'][$i]['download']?>회 다운로드
DATE : =$view['file'][$i]['datetime']?>
diff --git a/tail.sub.php b/tail.sub.php
index d343e9d15..af5d419c8 100644
--- a/tail.sub.php
+++ b/tail.sub.php
@@ -21,8 +21,6 @@ $(function() {