게시판 테이블 폭필수
diff --git a/adm/board_form_update.php b/adm/board_form_update.php
index e2f257821..5637c5f79 100644
--- a/adm/board_form_update.php
+++ b/adm/board_form_update.php
@@ -99,6 +99,7 @@ $sql_common = " gr_id = '{$_POST['gr_id']}',
bo_content_tail = '{$_POST['bo_content_tail']}',
bo_insert_content = '{$_POST['bo_insert_content']}',
bo_gallery_cols = '{$_POST['bo_gallery_cols']}',
+ bo_mobile_gallery_cols='{$_POST['bo_mobile_gallery_cols']}',
bo_upload_count = '{$_POST['bo_upload_count']}',
bo_upload_size = '{$_POST['bo_upload_size']}',
bo_reply_order = '{$_POST['bo_reply_order']}',
@@ -247,6 +248,7 @@ if (is_checked('chk_use_email')) $fields .= " , bo_use_email = '{$bo_use_
if (is_checked('chk_skin')) $fields .= " , bo_skin = '{$bo_skin}' ";
if (is_checked('chk_mobile_skin')) $fields .= " , bo_mobile_skin = '{$bo_mobile_skin}' ";
if (is_checked('chk_gallery_cols')) $fields .= " , bo_gallery_cols = '{$bo_gallery_cols}' ";
+if (is_checked('chk_mobile_gallery_cols'))$fields.=" , bo_mobile_gallery_cols = '{$bo_mobile_gallery_cols}' ";
if (is_checked('chk_table_width')) $fields .= " , bo_table_width = '{$bo_table_width}' ";
if (is_checked('chk_page_rows')) $fields .= " , bo_page_rows = '{$bo_page_rows}' ";
if (is_checked('chk_subject_len')) $fields .= " , bo_subject_len = '{$bo_subject_len}' ";
diff --git a/bbs/delete.php b/bbs/delete.php
index 5256025c0..2a30b2306 100644
--- a/bbs/delete.php
+++ b/bbs/delete.php
@@ -132,5 +132,7 @@ if ($count_write > 0 || $count_comment > 0)
@include_once($board_skin_path.'/delete.tail.skin.php');
+delete_cache_latest($bo_table);
+
goto_url('./board.php?bo_table='.$bo_table.'&page='.$page.$qstr);
?>
diff --git a/bbs/group.php b/bbs/group.php
index 4ad83b98b..9e1d74987 100644
--- a/bbs/group.php
+++ b/bbs/group.php
@@ -11,18 +11,28 @@ if (G4_IS_MOBILE) {
include_once('./_head.php');
?>
+
// 최신글
$sql = " select bo_table, bo_subject from {$g4[board_table]} where gr_id = '{$gr_id}' and bo_list_level <= '{$member[mb_level]}' order by bo_table ";
$result = sql_query($sql);
for ($i=0; $row=sql_fetch_array($result); $i++) {
+ $lt_style = "";
+ if ($i%2==1) $lt_style = "margin-left:20px";
+ else $lt_style = "";
+?>
+
+
// 이 함수가 바로 최신글을 추출하는 역할을 합니다.
// 스킨은 입력하지 않을 경우 관리자 > 환경설정의 최신글 스킨경로를 기본 스킨으로 합니다.
// 사용방법
// latest(스킨, 게시판아이디, 출력라인, 글자수);
echo latest('basic', $row['bo_table'], 5, 70);
+ ?>
+
+
}
?>
diff --git a/bbs/move.php b/bbs/move.php
index 2643c31c7..6006a1180 100644
--- a/bbs/move.php
+++ b/bbs/move.php
@@ -55,7 +55,7 @@ for ($i=0; $row=sql_fetch_array($result); $i++)
-
+
=$act?>할 게시판을 한개 이상 선택하여 주십시오.
diff --git a/bbs/move_update.php b/bbs/move_update.php
index 59c13fe4c..ac844ec94 100644
--- a/bbs/move_update.php
+++ b/bbs/move_update.php
@@ -9,7 +9,7 @@ if ($sw != 'move' && $sw != 'copy')
alert('sw 값이 제대로 넘어오지 않았습니다.');
if(!count($_POST['chk_bo_table']))
- alert("게시물을 ".$act."할 게시판을 한개 이상 선택해 주십시오.", $url);
+ alert('게시물을 '.$act.'할 게시판을 한개 이상 선택해 주십시오.', $url);
// 원본 파일 디렉토리
$src_dir = G4_DATA_PATH.'/file/'.$bo_table;
@@ -43,7 +43,7 @@ while ($row = sql_fetch_array($result))
{
$nick = cut_str($member['mb_nick'], $config['cf_cut_name']);
if (!$row2['wr_is_comment'] && $config['cf_use_copy_log'])
- $row2['wr_content'] .= PHP_EOL.'[이 게시물은 '.$nick.'님에 의해 '.G4_TIME_YMDHIS.' '.$board['bo_subject'].'에서 '.($sw == 'copy' ? '복사' : '이동').' 됨]';
+ $row2['wr_content'] .= PHP_EOL.'[이 게시물은 '.$nick.'님에 의해 '.G4_TIME_YMDHIS.' '.$board['bo_subject'].'에서 '.($sw == 'copy' ? '복사' : '이동').' 됨]
';
$sql = " insert into $move_write_table
set wr_num = '$next_wr_num',
@@ -161,7 +161,7 @@ while ($row = sql_fetch_array($result))
delete_cache_latest($bo_table);
-if ($sw == "move")
+if ($sw == 'move')
{
for ($i=0; $i
-
+
+
+
-
+
설문조사 기타의견 메일
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 제목 : =$subject?>
-
-
- 게시자 : =$name?> =$mb_id?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+ =$subject?>
+
+
+ 작성자 =$name?> (=$mb_id?>)
+
+
+ =$content?>
+
+
+
diff --git a/bbs/register_form_update_mail1.php b/bbs/register_form_update_mail1.php
index df987fe19..ec63c0456 100644
--- a/bbs/register_form_update_mail1.php
+++ b/bbs/register_form_update_mail1.php
@@ -2,70 +2,35 @@
// 회원가입축하 메일 (회원님께 발송)
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
?>
-
+
+
+
-
+
회원가입 축하 메일
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- =$mb_name?> 님의 회원가입을 진심으로 축하합니다.
-
- if ($config['cf_use_email_certify']) { ?>
- 아래의 주소를 클릭하시면 회원가입이 완료됩니다.
-
=$certify_href?>
- } ?>
-
-
회원님의 성원에 보답하고자 더욱 더 열심히 하겠습니다.
-
감사합니다.
-
-
-
-
-
-
-
-
-
- 로그인 후 모든 정보를 이용하실 수 있습니다.[바로가기 ]
-
-
-
-
-
-
-
-
-
-
+
diff --git a/bbs/register_form_update_mail2.php b/bbs/register_form_update_mail2.php
index 54476aab5..e05ba30d7 100644
--- a/bbs/register_form_update_mail2.php
+++ b/bbs/register_form_update_mail2.php
@@ -2,64 +2,34 @@
// 회원가입 메일 (관리자 메일로 발송)
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
?>
-
+
+
+
-
-회원가입 메일
+
+회원가입 알림 메일
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- =$mb_name?> 님께서 회원가입 하셨습니다.
- 회원 아이디 : =$mb_id?>
-
회원 이름 : =$mb_name?>
-
회원 별명 : =$mb_nick?>
-
추천인아이디 : =$mb_recommend?>
-
-
-
-
-
-
-
-
- 관리자화면에서 자세한 내용을 확인하실 수 있습니다.[바로가기 ]
-
-
-
-
-
-
-
-
-
-
+
+
+
+ 회원가입 알림 메일
+
+
+ =$config['cf_title']?>
+
+
+ =$mb_name?> 님께서 회원가입 하셨습니다.
+ 회원 아이디 : =$mb_id?>
+ 회원 이름 : =$mb_name?>
+ 회원 별명 : =$mb_nick?>
+ 추천인아이디 : =$mb_recommend?>
+
+
관리자에서 회원정보 확인하기
+
+
diff --git a/bbs/register_form_update_mail3.php b/bbs/register_form_update_mail3.php
index cb7caf753..1966a0e7d 100644
--- a/bbs/register_form_update_mail3.php
+++ b/bbs/register_form_update_mail3.php
@@ -2,6 +2,42 @@
// E-mail 수정시 인증 메일 (회원님께 발송)
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
?>
+
+
+
+
+
+회원 인증 메일
+
+
+
+
+
+
+
+
+
+
+
diff --git a/bbs/write.php b/bbs/write.php
index d4bdc6d10..7965b88ae 100644
--- a/bbs/write.php
+++ b/bbs/write.php
@@ -361,6 +361,7 @@ include_once('./board_head.php');
$action_url = G4_HTTPS_BBS_URL."/write_update.php";
+echo '';
include_once ($board_skin_path.'/write.skin.php');
include_once('./board_tail.php');
diff --git a/bbs/write_comment_update.php b/bbs/write_comment_update.php
index 15e511198..3edbe59ca 100644
--- a/bbs/write_comment_update.php
+++ b/bbs/write_comment_update.php
@@ -27,13 +27,13 @@ if ($is_guest) {
if ($w == "c" || $w == "cu") {
if ($member['mb_level'] < $board['bo_comment_level'])
- alert('코멘트를 쓸 권한이 없습니다.');
+ alert('댓글를 쓸 권한이 없습니다.');
}
else
alert('w 값이 제대로 넘어오지 않았습니다.');
// 세션의 시간 검사
-// 4.00.15 - 코멘트 수정시 연속 게시물 등록 메시지로 인한 오류 수정
+// 4.00.15 - 댓글 수정시 연속 게시물 등록 메시지로 인한 오류 수정
if ($w == 'c' && $_SESSION['ss_datetime'] >= (G4_SERVER_TIME - $config['cf_delay_sec']) && !$is_admin)
alert('너무 빠른 시간내에 게시물을 연속해서 올릴 수 없습니다.');
@@ -51,7 +51,7 @@ if (empty($wr['wr_id']))
if ($member[mb_id])
{
$mb_id = $member['mb_id'];
- // 4.00.13 - 실명 사용일때 코멘트에 별명으로 입력되던 오류를 수정
+ // 4.00.13 - 실명 사용일때 댓글에 별명으로 입력되던 오류를 수정
$wr_name = $board['bo_use_name'] ? $member['mb_name'] : $member['mb_nick'];
$wr_password = $member['mb_password'];
$wr_email = $member['mb_email'];
@@ -63,25 +63,25 @@ else
$wr_password = sql_password($wr_password);
}
-if ($w == 'c') // 코멘트 입력
+if ($w == 'c') // 댓글 입력
{
/*
if ($member[mb_point] + $board[bo_comment_point] < 0 && !$is_admin)
- alert('보유하신 포인트('.number_format($member[mb_point]).')가 없거나 모자라서 코멘트쓰기('.number_format($board[bo_comment_point]).')가 불가합니다.'.PHP_EOL.PHP_EOL.'포인트를 적립하신 후 다시 코멘트를 써 주십시오.');
+ alert('보유하신 포인트('.number_format($member[mb_point]).')가 없거나 모자라서 댓글쓰기('.number_format($board[bo_comment_point]).')가 불가합니다.'.PHP_EOL.PHP_EOL.'포인트를 적립하신 후 다시 댓글를 써 주십시오.');
*/
- // 코멘트쓰기 포인트설정시 회원의 포인트가 음수인 경우 코멘트를 쓰지 못하던 버그를 수정 (곱슬최씨님)
+ // 댓글쓰기 포인트설정시 회원의 포인트가 음수인 경우 댓글를 쓰지 못하던 버그를 수정 (곱슬최씨님)
$tmp_point = ($member['mb_point'] > 0) ? $member['mb_point'] : 0;
if ($tmp_point + $board['bo_comment_point'] < 0 && !$is_admin)
- alert('보유하신 포인트('.number_format($member['mb_point']).')가 없거나 모자라서 코멘트쓰기('.number_format($board['bo_comment_point']).')가 불가합니다.\\n\\n포인트를 적립하신 후 다시 코멘트를 써 주십시오.');
+ alert('보유하신 포인트('.number_format($member['mb_point']).')가 없거나 모자라서 댓글쓰기('.number_format($board['bo_comment_point']).')가 불가합니다.\\n\\n포인트를 적립하신 후 다시 댓글를 써 주십시오.');
- // 코멘트 답변
+ // 댓글 답변
if ($comment_id)
{
$sql = " select wr_id, wr_comment, wr_comment_reply from $write_table
where wr_id = '$comment_id' ";
$reply_array = sql_fetch($sql);
if (!$reply_array['wr_id'])
- alert('답변할 코멘트가 없습니다.\\n\\n답변하는 동안 코멘트가 삭제되었을 수 있습니다.');
+ alert('답변할 댓글가 없습니다.\\n\\n답변하는 동안 댓글가 삭제되었을 수 있습니다.');
$tmp_comment = $reply_array['wr_comment'];
@@ -167,17 +167,17 @@ if ($w == 'c') // 코멘트 입력
$comment_id = mysql_insert_id();
- // 원글에 코멘트수 증가 & 마지막 시간 반영
+ // 원글에 댓글수 증가 & 마지막 시간 반영
sql_query(" update $write_table set wr_comment = wr_comment + 1, wr_last = '".G4_TIME_YMDHIS."' where wr_id = '$wr_id' ");
// 새글 INSERT
sql_query(" insert into {$g4['board_new_table']} ( bo_table, wr_id, wr_parent, bn_datetime, mb_id ) values ( '$bo_table', '$comment_id', '$wr_id', '".G4_TIME_YMDHIS."', '{$member['mb_id']}' ) ");
- // 코멘트 1 증가
+ // 댓글 1 증가
sql_query(" update {$g4['board_table']} set bo_count_comment = bo_count_comment + 1 where bo_table = '$bo_table' ");
// 포인트 부여
- insert_point($member['mb_id'], $board['bo_comment_point'], "{$board['bo_subject']} {$wr_id}-{$comment_id} 코멘트쓰기", $bo_table, $comment_id, '코멘트');
+ insert_point($member['mb_id'], $board['bo_comment_point'], "{$board['bo_subject']} {$wr_id}-{$comment_id} 댓글쓰기", $bo_table, $comment_id, '댓글');
// 메일발송 사용
if ($config['cf_email_use'] && $board['bo_use_email'])
@@ -188,13 +188,13 @@ if ($w == 'c') // 코멘트 입력
$board_admin = get_admin('board');
$wr_subject = get_text(stripslashes($wr['wr_subject']));
- $wr_content = nl2br(get_text(stripslashes("----- 원글 -----\n\n{$wr['wr_subject']}\n\n\n----- 코멘트 -----\n\n$wr_content")));
+ $wr_content = nl2br(get_text(stripslashes("원글\n{$wr['wr_subject']}\n\n\n댓글\n$wr_content")));
- $warr = array( ''=>'입력', 'u'=>'수정', 'r'=>'답변', 'c'=>'코멘트', 'cu'=>'코멘트 수정' );
+ $warr = array( ''=>'입력', 'u'=>'수정', 'r'=>'답변', 'c'=>'댓글 ', 'cu'=>'댓글 수정' );
$str = $warr[$w];
$subject = $board['bo_subject'].' 게시판에 '.$str.'글이 올라왔습니다.';
- // 4.00.15 - 메일로 보내는 코멘트의 바로가기 링크 수정
+ // 4.00.15 - 메일로 보내는 댓글의 바로가기 링크 수정
$link_url = G4_BBS_URL."/board.php?bo_table=".$bo_table."&wr_id=".$wr_id."&".$qstr."#c_".$comment_id;
include_once(G4_LIB_PATH.'/mailer.lib.php');
@@ -217,7 +217,7 @@ if ($w == 'c') // 코멘트 입력
// 원글 메일발송에 체크가 되어 있다면
if ($config['cf_email_wr_write']) $array_email[] = $wr['wr_email'];
- // 코멘트 쓴 모든이에게 메일 발송이 되어 있다면 (자신에게는 발송하지 않는다)
+ // 댓글 쓴 모든이에게 메일 발송이 되어 있다면 (자신에게는 발송하지 않는다)
if ($config['cf_email_wr_comment_all']) {
$sql = " select distinct wr_email from {$write_table}
where wr_email not in ( '{$wr['wr_email']}', '{$member['mb_email']}', '' )
@@ -236,7 +236,7 @@ if ($w == 'c') // 코멘트 입력
}
}
}
-else if ($w == 'cu') // 코멘트 수정
+else if ($w == 'cu') // 댓글 수정
{
$sql = " select mb_id, wr_comment, wr_comment_reply from $write_table
where wr_id = '$comment_id' ";
@@ -256,18 +256,18 @@ else if ($w == 'cu') // 코멘트 수정
if ($member['mb_level'] >= $mb['mb_level']) // 자신의 레벨이 크거나 같다면 통과
;
else
- alert('그룹관리자의 권한보다 높은 회원의 코멘트이므로 수정할 수 없습니다.');
+ alert('그룹관리자의 권한보다 높은 회원의 댓글이므로 수정할 수 없습니다.');
} else
- alert('자신이 관리하는 그룹의 게시판이 아니므로 코멘트를 수정할 수 없습니다.');
+ alert('자신이 관리하는 그룹의 게시판이 아니므로 댓글를 수정할 수 없습니다.');
} else if ($is_admin == 'board') { // 게시판관리자이면
$mb = get_member($comment['mb_id']);
if ($member['mb_id'] == $board['bo_admin']) { // 자신이 관리하는 게시판인가?
if ($member['mb_level'] >= $mb['mb_level']) // 자신의 레벨이 크거나 같다면 통과
;
else
- alert('게시판관리자의 권한보다 높은 회원의 코멘트이므로 수정할 수 없습니다.');
+ alert('게시판관리자의 권한보다 높은 회원의 댓글이므로 수정할 수 없습니다.');
} else
- alert('자신이 관리하는 게시판이 아니므로 코멘트를 수정할 수 없습니다.');
+ alert('자신이 관리하는 게시판이 아니므로 댓글를 수정할 수 없습니다.');
} else if ($member['mb_id']) {
if ($member['mb_id'] != $comment['mb_id'])
alert('자신의 글이 아니므로 수정할 수 없습니다.');
@@ -281,7 +281,7 @@ else if ($w == 'cu') // 코멘트 수정
and wr_is_comment = 1 ";
$row = sql_fetch($sql);
if ($row['cnt'] && !$is_admin)
- alert('이 코멘트와 관련된 답변코멘트가 존재하므로 수정 할 수 없습니다.');
+ alert('이 댓글와 관련된 답변댓글가 존재하므로 수정 할 수 없습니다.');
$sql_ip = "";
if (!$is_admin)
diff --git a/bbs/write_update_mail.php b/bbs/write_update_mail.php
index 5da53a639..2deaef14a 100644
--- a/bbs/write_update_mail.php
+++ b/bbs/write_update_mail.php
@@ -2,68 +2,29 @@
// 게시물 입력시 게시자, 관리자에게 드리는 메일을 수정하고 싶으시다면 이 파일을 수정하십시오.
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
?>
-
+
+
-
+
=$wr_subject?> 메일
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 제목
- =$wr_subject?>
-
-
-
-
-
- 게시자
- =$wr_name?>
-
-
-
-
-
-
-
-
-
-
-
-
- 홈페이지에서도 게시물을 확인하실 수 있습니다.[바로가기 ]
-
-
-
-
-
-
-
-
-
-
+
+
+
+ =$wr_subject?>
+
+
+ 작성자 =$wr_name?>
+
+
+ =$wr_content?>
+
+
사이트에서 게시물 확인하기
+
+
diff --git a/css/default.css b/css/default.css
index 37b4eaf21..c5f1b4de6 100644
--- a/css/default.css
+++ b/css/default.css
@@ -171,6 +171,8 @@ a:active {color:#000;text-decoration:underline}
.bo_sideview td {padding:6px 4px} /* 사이드뷰 사용하는 테이블 셀 패딩값 */
td.empty_table {padding:85px 0;text-align:center}
+.empty_list {padding:85px 0;text-align:center}
+
/* 필수입력 */
.required {background:url('../img/wrest.gif') #f7f7f7 top right no-repeat !important}
@@ -306,8 +308,8 @@ fieldset button {padding:0 15px;height:24px;border:0;background:#333;color:#fff;
#mb_login fieldset {position:relative;margin:0;padding:20px 20px 20px 95px;border:1px solid #cfded8;border-bottom:0;background:#fff}
#mb_login label {letter-spacing:-0.1em}
#mb_login .login_id {position:absolute;top:26px;left:95px}
-#mb_login .login_pw {position:absolute;top:55px;left:95px}
-#mb_login .fs_input {display:block;margin:0 0 5px 80px}
+#mb_login .login_pw {position:absolute;top:52px;left:95px}
+#mb_login .frm_input {display:block;margin:0 0 5px 80px}
#mb_login .btn_submit {position:absolute;top:20px;left:335px;height:53px}
#mb_login section {margin:0 0 30px;padding:20px;border:1px solid #cfded8;background:#f7f7f2}
#mb_login section div {text-align:right}
@@ -479,13 +481,27 @@ fieldset button {padding:0 15px;height:24px;border:0;background:#333;color:#fff;
/* 갤러리 목록 */
#bo_img h2 {margin:0;padding:0;font-size:0;line-height:0;overflow:hidden}
-#bo_img_list {margin:0;padding:0;list-style:none;zoom:1}
+#bo_img_list {margin:10px 0 0;padding:0;list-style:none;zoom:1}
#bo_img_list:after {display:block;visibility:hidden;clear:both;content:""}
-.bo_img_list_li {float:left;margin-bottom:20px}
-.bo_img_con {margin:0;padding:0;list-style:none}
-.bo_img_con li {}
+.bo_img_list_li {float:left;margin:0 10px 30px 0}
-/* 목록 공통 */
+.bo_img_con {margin:0;padding:0;list-style:none}
+.bo_img_con li {margin:0 0 4px}
+.bo_img_con .bo_img_subject {display:inline-block;width:50px}
+
+.bo_img_now .bo_img_text_href a {color:#ff3061}
+
+.bo_img_href a:link,
+.bo_img_href a:focus,
+.bo_img_href a:hover {text-decoration:none}
+.bo_img_href strong {display:block;width:174px;height:124px;background:#f7f7f7;text-align:center;line-height:10em}
+
+.bo_img_text_href {margin:10px 0 !important}
+.bo_img_text_href a {font-weight:bold}
+.bo_img_text_href span {display:inline !important}
+.bo_img_text_href img {margin:0 0 0 4px}
+
+/* 게시판 목록 공통 */
.bo_fx {margin-bottom:5px;zoom:1}
.bo_fx:after {display:block;visibility:hidden;clear:both;content:""}
.bo_fx ul {margin:0;padding:0;list-style:none}
@@ -514,8 +530,11 @@ fieldset button {padding:0 15px;height:24px;border:0;background:#333;color:#fff;
#bo_v_info {padding:0 0 10px;border-bottom:1px solid #ddd}
#bo_v_info h2 {margin:0;padding:0;height:0;overflow:hidden}
-#bo_v_info {}
#bo_v_info strong {display:inline-block;margin:0 15px 0 5px;font-weight:normal}
+#bo_v_info .sv_member,
+#bo_v_info .sv_guest,
+#bo_v_info .member,
+#bo_v_info .guest {font-weight:bold}
#bo_v_file {}
#bo_v_file h2 {margin:0;padding:0;height:0;overflow:hidden}
diff --git a/css/mobile.css b/css/mobile.css
index c49361ce8..4b2af4614 100644
--- a/css/mobile.css
+++ b/css/mobile.css
@@ -23,7 +23,7 @@ pre {overflow-x:scroll;font-size:1.1em}
/* 화면낭독기 사용자용 */
#hd_login_msg {position:absolute;top:0;left:0;width:0;height:0;overflow:hidden}
-.sound_only {display:inline-block;margin:0;padding:0;width:0;height:0;font-size:0;line-height:0;overflow:hidden}
+.sound_only {display:inline-block;margin:0 !important;padding:0 !important;width:0 !important;height:0 !important;font-size:0 !important;line-height:0 !important;overflow:hidden}
/* 본문 바로가기 */
#to_content a {z-index:100000;position:absolute;top:0;left:0;width:0;height:0;font-size:0;line-height:0;overflow:hidden}
@@ -420,6 +420,28 @@ input.required:focus {border:0;background:#21272e !important;color:#fff;line-hei
#bo_list td:nth-of-type(2) {text-align:center}
+/* 갤러리 목록 */
+#bo_img h2 {margin:0;padding:0;width:0;height:0;font-size:0;line-height:0;overflow:hidden}
+#bo_img_list {margin:1em 0 0;padding:0 1em;list-style:none;zoom:1}
+#bo_img_list:after {display:block;visibility:hidden;clear:both;content:""}
+.bo_img_list_li {float:left;margin:0 0 2em;width:25%}
+
+.bo_img_con {margin:0;padding:0;list-style:none}
+.bo_img_con li {margin:0 0 0.3em}
+.bo_img_con .bo_img_subject {display:inline-block;width:50px}
+
+.bo_img_now .bo_img_text_href a {color:#ff3061}
+
+.bo_img_href a:link,
+.bo_img_href a:focus,
+.bo_img_href a:hover {text-decoration:none}
+.bo_img_href strong {display:block;width:174px;height:124px;background:#f7f7f7;text-align:center;line-height:10em}
+
+.bo_img_text_href {margin:1em 0 !important}
+.bo_img_text_href a {color:#000;font-weight:bold;text-decoration:none}
+.bo_img_text_href img {margin:0 0 0 0.3em}
+
+/* 게시판 목록 공통 */
.bo_fx {margin-bottom:0.3em;padding:0.5em 1em;zoom:1}
.bo_fx:after {display:block;visibility:hidden;clear:both;content:""}
.bo_fx ul {margin:0;padding:0;list-style:none}
diff --git a/mobile/group.php b/mobile/group.php
index a0cabaa4c..5eeb7e433 100644
--- a/mobile/group.php
+++ b/mobile/group.php
@@ -4,7 +4,21 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
include_once(G4_MOBILE_PATH.'/_head.php');
?>
-모바일용 게시판 그룹
+
+
+// 최신글
+$sql = " select bo_table, bo_subject from {$g4[board_table]} where gr_id = '{$gr_id}' and bo_list_level <= '{$member[mb_level]}' order by bo_table ";
+$result = sql_query($sql);
+for ($i=0; $row=sql_fetch_array($result); $i++) {
+ // 이 함수가 바로 최신글을 추출하는 역할을 합니다.
+ // 스킨은 입력하지 않을 경우 관리자 > 환경설정의 최신글 스킨경로를 기본 스킨으로 합니다.
+
+ // 사용방법
+ // latest(스킨, 게시판아이디, 출력라인, 글자수);
+ echo latest('basic', $row['bo_table'], 5, 70);
+}
+?>
+
include_once(G4_MOBILE_PATH.'/_tail.php');
diff --git a/mobile/skin/board/basic/list.skin.php b/mobile/skin/board/basic/list.skin.php
index b1618406f..9c90cfbc1 100644
--- a/mobile/skin/board/basic/list.skin.php
+++ b/mobile/skin/board/basic/list.skin.php
@@ -140,8 +140,8 @@ if ($is_nogood) $colspan++;
>글쓴이
>글쓴이(코)
-
-
+
+
diff --git a/mobile/skin/board/gallery/img/icon_file.gif b/mobile/skin/board/gallery/img/icon_file.gif
new file mode 100644
index 000000000..cca47f566
Binary files /dev/null and b/mobile/skin/board/gallery/img/icon_file.gif differ
diff --git a/mobile/skin/board/gallery/img/icon_hot.gif b/mobile/skin/board/gallery/img/icon_hot.gif
new file mode 100644
index 000000000..c95b839ae
Binary files /dev/null and b/mobile/skin/board/gallery/img/icon_hot.gif differ
diff --git a/mobile/skin/board/gallery/img/icon_img.gif b/mobile/skin/board/gallery/img/icon_img.gif
new file mode 100644
index 000000000..fefa10d4a
Binary files /dev/null and b/mobile/skin/board/gallery/img/icon_img.gif differ
diff --git a/mobile/skin/board/gallery/img/icon_link.gif b/mobile/skin/board/gallery/img/icon_link.gif
new file mode 100644
index 000000000..0f3cb1ac6
Binary files /dev/null and b/mobile/skin/board/gallery/img/icon_link.gif differ
diff --git a/mobile/skin/board/gallery/img/icon_mobile.gif b/mobile/skin/board/gallery/img/icon_mobile.gif
new file mode 100644
index 000000000..ad934d23c
Binary files /dev/null and b/mobile/skin/board/gallery/img/icon_mobile.gif differ
diff --git a/mobile/skin/board/gallery/img/icon_movie.gif b/mobile/skin/board/gallery/img/icon_movie.gif
new file mode 100644
index 000000000..cb958f83f
Binary files /dev/null and b/mobile/skin/board/gallery/img/icon_movie.gif differ
diff --git a/mobile/skin/board/gallery/img/icon_new.gif b/mobile/skin/board/gallery/img/icon_new.gif
new file mode 100644
index 000000000..45aa6d7ed
Binary files /dev/null and b/mobile/skin/board/gallery/img/icon_new.gif differ
diff --git a/mobile/skin/board/gallery/img/icon_reply.gif b/mobile/skin/board/gallery/img/icon_reply.gif
new file mode 100644
index 000000000..91c135977
Binary files /dev/null and b/mobile/skin/board/gallery/img/icon_reply.gif differ
diff --git a/mobile/skin/board/gallery/img/icon_secret.gif b/mobile/skin/board/gallery/img/icon_secret.gif
new file mode 100644
index 000000000..c04899f14
Binary files /dev/null and b/mobile/skin/board/gallery/img/icon_secret.gif differ
diff --git a/mobile/skin/board/gallery/img/icon_sound.gif b/mobile/skin/board/gallery/img/icon_sound.gif
new file mode 100644
index 000000000..c5188318a
Binary files /dev/null and b/mobile/skin/board/gallery/img/icon_sound.gif differ
diff --git a/mobile/skin/board/gallery/list.skin.php b/mobile/skin/board/gallery/list.skin.php
new file mode 100644
index 000000000..6f5b1cb66
--- /dev/null
+++ b/mobile/skin/board/gallery/list.skin.php
@@ -0,0 +1,247 @@
+
+if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
+include_once(G4_LIB_PATH.'/thumbnail.lib.php');
+?>
+
+ if (!$wr_id) {?>=$g4['title']?> }?>
+
+
+
+
+
+
+
+
+
+ if ($is_category) { ?>
+
+ } ?>
+
+
+
+ Total =number_format($total_count)?>건
+ =$page?> 페이지
+
+
+ if ($rss_href || $write_href) {?>
+
+ if ($rss_href) { ?>RSS } ?>
+ if ($admin_href) { ?>관리자 } ?>
+ if ($write_href) { ?>글쓰기 } ?>
+
+ } ?>
+
+
+
+
+
+ if($is_checkbox) { ?>
+
+자바스크립트를 사용하지 않는 경우 별도의 확인 절차 없이 바로 선택삭제 처리하므로 주의하시기 바랍니다.
+
+ } ?>
+
+
+ echo $write_pages; ?>
+
+
+ 게시물 검색
+
+
+
+
+ if ($is_checkbox) { ?>
+
+ } ?>
+
diff --git a/mobile/skin/board/gallery/view.skin.php b/mobile/skin/board/gallery/view.skin.php
new file mode 100644
index 000000000..79ac40243
--- /dev/null
+++ b/mobile/skin/board/gallery/view.skin.php
@@ -0,0 +1,221 @@
+
+if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
+include_once(G4_LIB_PATH.'/thumbnail.lib.php');
+?>
+
+
+
+
+ =$board['bo_subject']?>
+ if ($category_name) { // 분류가 지정되었다면 ?>=($category_name ? "{$view['ca_name']} " : "");?> } // 분류 출력 끝 ?>
+
+
+
=cut_str(get_text($view['wr_subject']), 70) // 글제목 출력?>
+
+
+ 게시물 정보
+ 작성자 =$view['name']?> if ($is_ip_view) { echo " ($ip)"; } ?>
+ 작성일 =date("y-m-d H:i", strtotime($view['wr_datetime']))?>
+ 조회=number_format($view['wr_hit'])?>회
+ 댓글=number_format($view['wr_comment'])?>건
+
+
+
+ if ($view['file']['count']) {
+ $cnt = 0;
+ for ($i=0; $i
+
+ if($cnt) { ?>
+
+ } ?>
+
+
+ if (implode('', $view['link'])) {
+ ?>
+
+ 관련링크
+
+
+ // 링크
+ $cnt = 0;
+ for ($i=1; $i<=count($view['link']); $i++) {
+ if ($view['link'][$i]) {
+ $cnt++;
+ $link = cut_str($view['link'][$i], 70);
+ ?>
+
+
+
+ =$link?>
+
+ =$view['link_hit'][$i]?>회 연결
+
+
+ }
+ }
+ ?>
+
+
+ } ?>
+
+
+ 게시물 상단 버튼
+
+ ob_start();
+ ?>
+ if ($prev_href || $next_href) { ?>
+
+ if ($prev_href) { ?>이전글 } ?>
+ if ($next_href) { ?>다음글 } ?>
+
+ } ?>
+
+
+ if ($update_href) { ?>수정 } ?>
+ if ($delete_href) { ?>삭제 } ?>
+ if ($copy_href) { ?>복사 } ?>
+ if ($move_href) { ?>이동 } ?>
+ if ($search_href) { ?>검색 } ?>
+ 목록
+ if ($reply_href) { ?>답변 } ?>
+ if ($write_href) { ?>글쓰기 } ?>
+
+
+ $link_buttons = ob_get_contents();
+ ob_end_flush();
+ ?>
+
+
+
+
+
+
+ // 파일 출력
+ $v_img_count = count($view['file']);
+ if($v_img_count) {
+ echo "\n";
+
+ for ($i=0; $i<=count($view['file']); $i++) {
+ if ($view['file'][$i]['view']) {
+ //echo $view['file'][$i]['view'];
+ echo get_view_thumbnail($view['file'][$i]['view']);
+ }
+ }
+
+ echo "
\n";
+ }
+ ?>
+
+ =get_view_thumbnail($view['content']);?>
+ //echo $view[rich_content]; // {이미지:0} 과 같은 코드를 사용할 경우?>
+
+
+ if ($is_signature) { ?>=$signature?>
} ?>
+
+ if ($scrap_href || $good_href || $nogood_href) { ?>
+
+ } else {
+ if($board['bo_use_good'] || $board['bo_use_nogood']) {
+ ?>
+
+ if($board['bo_use_good']) { ?>추천 =number_format($view['wr_good'])?> } ?>
+ if($board['bo_use_nogood']) { ?>비추천 =number_format($view['wr_nogood'])?> } ?>
+
+
+ }
+ }
+ ?>
+
+
+
+ // 코멘트 입출력
+ include_once('./view_comment.php');
+ ?>
+
+
+ 게시물 하단 버튼
+
+
+ =$link_buttons?>
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/skin/board/gallery/view_comment.skin.php b/mobile/skin/board/gallery/view_comment.skin.php
new file mode 100644
index 000000000..7428fbb4b
--- /dev/null
+++ b/mobile/skin/board/gallery/view_comment.skin.php
@@ -0,0 +1,292 @@
+
+if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
+?>
+
+
+
+
+
+
+ if ($is_comment_write) {
+ if($w == '')
+ $w = 'c';
+ ?>
+
+
+
+ } ?>
diff --git a/mobile/skin/board/gallery/write.skin.php b/mobile/skin/board/gallery/write.skin.php
new file mode 100644
index 000000000..7e6c2ae07
--- /dev/null
+++ b/mobile/skin/board/gallery/write.skin.php
@@ -0,0 +1,234 @@
+
+if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
+?>
+
+=$g4['title']?>
+
+
+
+
+
+
+
+
+
+
+
+
+
+$option = '';
+$option_hidden = '';
+if ($is_notice || $is_html || $is_secret || $is_mail) {
+ $option = '';
+ if ($is_notice) {
+ $option .= PHP_EOL.' '.PHP_EOL.'공지 ';
+ }
+
+ if ($is_html) {
+ if ($is_dhtml_editor) {
+ $option_hidden .= ' ';
+ } else {
+ $option .= PHP_EOL.' '.PHP_EOL.'html ';
+ }
+ }
+
+ if ($is_secret) {
+ if ($is_admin || $is_secret==1) {
+ $option .= PHP_EOL.' '.PHP_EOL.'비밀글 ';
+ } else {
+ $option_hidden .= ' ';
+ }
+ }
+
+ if ($is_mail) {
+ $option .= PHP_EOL.' '.PHP_EOL.'답변메일받기 ';
+ }
+}
+
+echo $option_hidden;
+?>
+
+
+
+
+
+
+
diff --git a/mobile/skin/member/basic/member_confirm.skin.php b/mobile/skin/member/basic/member_confirm.skin.php
index 1fcb63c65..76051a8a8 100644
--- a/mobile/skin/member/basic/member_confirm.skin.php
+++ b/mobile/skin/member/basic/member_confirm.skin.php
@@ -17,7 +17,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
회원아이디
=$member[mb_id]?>
-
+
diff --git a/mobile/skin/member/basic/scrap_popin.skin.php b/mobile/skin/member/basic/scrap_popin.skin.php
index 117d473c1..c42aabdd1 100644
--- a/mobile/skin/member/basic/scrap_popin.skin.php
+++ b/mobile/skin/member/basic/scrap_popin.skin.php
@@ -28,7 +28,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
-
+
\ No newline at end of file
diff --git a/mobile/skin/new/basic/new.skin.php b/mobile/skin/new/basic/new.skin.php
index 7c909c5ec..502b8ab95 100644
--- a/mobile/skin/new/basic/new.skin.php
+++ b/mobile/skin/new/basic/new.skin.php
@@ -12,8 +12,8 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
원글만
코멘트만
-
-
+
+
+
+
+
@@ -47,11 +61,14 @@ include_once(G4_LIB_PATH.'/thumbnail.lib.php');
diff --git a/skin/member/basic/scrap_popin.skin.php b/skin/member/basic/scrap_popin.skin.php
index 6b1167b26..f7bb40c63 100644
--- a/skin/member/basic/scrap_popin.skin.php
+++ b/skin/member/basic/scrap_popin.skin.php
@@ -28,7 +28,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
-
+
\ No newline at end of file
diff --git a/skin/member/kcpcert/formmail.skin.php b/skin/member/kcpcert/formmail.skin.php
index c04369eec..ebd491bcf 100644
--- a/skin/member/kcpcert/formmail.skin.php
+++ b/skin/member/kcpcert/formmail.skin.php
@@ -5,7 +5,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
=$name?>님께 메일보내기
-
+
@@ -19,36 +19,36 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
if (!$is_member) { ?>
이름필수
-
+
E-mail필수
-
+
} ?>
제목필수
-
+
형식
- TEXT
- HTML
- TEXT+HTML
+ TEXT
+ HTML
+ TEXT+HTML
내용필수
-
+
첨부 1
-
+
첨부 2
-
+
자동등록방지
@@ -58,7 +58,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
diff --git a/skin/member/kcpcert/login.skin.php b/skin/member/kcpcert/login.skin.php
index d79378d04..aa0c4c5d8 100644
--- a/skin/member/kcpcert/login.skin.php
+++ b/skin/member/kcpcert/login.skin.php
@@ -5,16 +5,16 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
=$g4['title']?>
-
+
회원아이디필수
-
+
패스워드필수
-
-
-
+
+
+
자동로그인
@@ -25,7 +25,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
아직 회원이 아니시라면 회원으로 가입 후 이용해 주십시오.
diff --git a/skin/member/kcpcert/member_confirm.skin.php b/skin/member/kcpcert/member_confirm.skin.php
index 00973554b..776161e40 100644
--- a/skin/member/kcpcert/member_confirm.skin.php
+++ b/skin/member/kcpcert/member_confirm.skin.php
@@ -10,17 +10,17 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
회원님의 정보를 안전하게 보호하기 위해 패스워드를 한번 더 확인합니다.
-
-
-
+
+
+
회원아이디
=$member[mb_id]?>
패스워드필수
-
-
+
+
diff --git a/skin/member/kcpcert/memo_form.skin.php b/skin/member/kcpcert/memo_form.skin.php
index 328a341b9..52ebf04ad 100644
--- a/skin/member/kcpcert/memo_form.skin.php
+++ b/skin/member/kcpcert/memo_form.skin.php
@@ -12,20 +12,20 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
-
+
쪽지쓰기
받는 회원아이디필수
-
+
여러 회원에게 보낼때는 컴마(,)로 구분하세요.
내용
- =$content?>
+ =$content?>
자동등록방지
@@ -38,7 +38,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
diff --git a/skin/member/kcpcert/password.skin.php b/skin/member/kcpcert/password.skin.php
index 6f597f001..adf2c94f9 100644
--- a/skin/member/kcpcert/password.skin.php
+++ b/skin/member/kcpcert/password.skin.php
@@ -22,7 +22,7 @@ else $g4['title'] = $g4['title'];
} ?>
-
+
@@ -33,7 +33,7 @@ else $g4['title'] = $g4['title'];
패스워드필수
-
+
diff --git a/skin/member/kcpcert/password_lost.skin.php b/skin/member/kcpcert/password_lost.skin.php
index 713829bd5..5f585e932 100644
--- a/skin/member/kcpcert/password_lost.skin.php
+++ b/skin/member/kcpcert/password_lost.skin.php
@@ -8,7 +8,7 @@ if((int)get_cookie('ck_passwordlost_count') > 2)
아이디/패스워드 찾기
-
+
@@ -16,9 +16,9 @@ if((int)get_cookie('ck_passwordlost_count') > 2)
회원가입 시 등록하신 이름과 핸드폰번호를 입력해 주세요.
이름필수
-
+
핸드폰번호필수
-
+
휴대폰인증
휴대폰인증을 위해서는 자바스크립트 사용이 가능해야합니다.
diff --git a/skin/member/kcpcert/password_lost2.skin.php b/skin/member/kcpcert/password_lost2.skin.php
index 03e0f127a..3b90fc5be 100644
--- a/skin/member/kcpcert/password_lost2.skin.php
+++ b/skin/member/kcpcert/password_lost2.skin.php
@@ -68,7 +68,7 @@ include_once(G4_PATH.'/head.sub.php');
아이디/패스워드 찾기
-
+
회원님의 아이디와 변경된 패스워드입니다.
diff --git a/skin/member/kcpcert/register.skin.php b/skin/member/kcpcert/register.skin.php
index f6302728e..f7a0a6d8c 100644
--- a/skin/member/kcpcert/register.skin.php
+++ b/skin/member/kcpcert/register.skin.php
@@ -2,14 +2,14 @@
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
?>
-
+
@@ -18,13 +18,13 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
=get_text($config['cf_privacy'])?>
개인정보수집이용안내의 내용에 동의합니다.
-
+
diff --git a/skin/member/kcpcert/register_form.skin.php b/skin/member/kcpcert/register_form.skin.php
index 92b9215a9..f8fa82724 100644
--- a/skin/member/kcpcert/register_form.skin.php
+++ b/skin/member/kcpcert/register_form.skin.php
@@ -4,7 +4,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
-
+
@@ -20,18 +20,18 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
아이디필수
- =$readonly?>>
+ =$readonly?>>
영문자, 숫자, _ 만 입력 가능. 최소 3자이상 입력하세요.
패스워드필수
- >
+ >
패스워드 확인필수
- >
+ >
@@ -40,7 +40,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
이름필수
- =$readonly?>>
+ =$readonly?>>
if ($w=='') { echo "공백없이 한글만 입력하세요. "; } ?>
@@ -49,7 +49,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
별명필수
-
+
공백없이 한글,영문,숫자만 입력 가능 (한글2자, 영문4자 이상)
@@ -63,7 +63,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
E-mail if ($config['cf_use_email_certify']) {?>필수 }?>
- " maxlength="100" size="50" value='=isset($member['mb_email'])?$member['mb_email']:'';?>' =$config['cf_use_email_certify']?"required":"";?>>
+ ' =$config['cf_use_email_certify']?"required":"";?> id="reg_mb_email" class="frm_input email =$config['cf_use_email_certify']?"required":"";?>" size="50" maxlength="100">
if ($config['cf_use_email_certify']) { ?>
if ($w=='') { echo "E-mail 로 발송된 내용을 확인한 후 인증하셔야 회원가입이 완료됩니다."; } ?>
@@ -76,14 +76,14 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
if ($config['cf_use_homepage']) { ?>
홈페이지 if ($config['cf_req_homepage']){?>필수 }?>
- " maxlength="255" size="50" =$config['cf_req_homepage']?"required":"";?> value="=$member['mb_homepage']?>">
+ " size="50" maxlength="255"=$config['cf_req_homepage']?"required":"";?>>
} ?>
if ($config['cf_use_tel']) { ?>
전화번호 if ($config['cf_req_tel']) {?>필수 }?>
- " maxlength="20" =$config['cf_req_tel']?"required":"";?> value="=$member['mb_tel']?>">
+ " maxlength="20" =$config['cf_req_tel']?"required":"";?>>
} ?>
@@ -93,7 +93,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
-
+
휴대폰인증
휴대폰인증을 위해서는 자바스크립트 사용이 가능해야합니다.
@@ -108,12 +108,12 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
if ($config['cf_req_addr']) {?>필수 } ?>
- " size="2" maxlength="3" =$config['cf_req_addr']?"required":"";?> value="=$member['mb_zip1']?>" title="우편번호 앞자리">
+ " size="2" maxlength="3" =$config['cf_req_addr']?"required":"";?> >
-
- " size="2" maxlength="3" =$config['cf_req_addr']?"required":"";?> value="=$member['mb_zip2']?>" title="우편번호 뒷자리">
- 주소찾기
- " size="50" =$config['cf_req_addr']?"required":"";?> value="=$member['mb_addr1']?>" title="행정구역주소">
- " size="50" =$config['cf_req_addr']?"required":"";?> value="=$member['mb_addr2']?>" title="상세주소">
+ " size="2" maxlength="3" =$config['cf_req_addr']?"required":"";?>>
+ 주소찾기
+ " size="50" =$config['cf_req_addr']?"required":"";?>>
+ " size="50" =$config['cf_req_addr']?"required":"";?>>
} ?>
@@ -124,14 +124,14 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
if ($config['cf_use_signature']) { ?>
서명 if ($config['cf_req_signature']){?>필수 }?>
- " =$config['cf_req_signature']?"required":"";?>>=$member['mb_signature']?>
+ " =$config['cf_req_signature']?"required":"";?>>=$member['mb_signature']?>
} ?>
if ($config['cf_use_profile']) { ?>
자기소개
- " =$config['cf_req_profile']?"required":"";?>>=$member['mb_profile']?>
+ " =$config['cf_req_profile']?"required":"";?>>=$member['mb_profile']?>
} ?>
@@ -139,9 +139,9 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
회원아이콘
-
+
if ($w == 'u' && file_exists($mb_icon)) { ?>
-
+
삭제
} ?>
@@ -155,7 +155,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
메일링서비스
- >
+ >
정보 메일을 받겠습니다.
@@ -164,7 +164,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
SMS 수신여부
- >
+ >
핸드폰 문자메세지를 받겠습니다.
@@ -175,7 +175,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
정보공개
- >
+ >
다른분들이 나의 정보를 볼 수 있도록 합니다.
정보공개를 바꾸시면 앞으로 =(int)$config['cf_open_modify']?>일 이내에는 변경이 안됩니다.
@@ -198,7 +198,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
if ($w == "" && $config['cf_use_recommend']) { ?>
추천인아이디
-
+
} ?>
@@ -209,7 +209,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
diff --git a/skin/member/kcpcert/scrap_popin.skin.php b/skin/member/kcpcert/scrap_popin.skin.php
index 117d473c1..7a95eaf66 100644
--- a/skin/member/kcpcert/scrap_popin.skin.php
+++ b/skin/member/kcpcert/scrap_popin.skin.php
@@ -5,7 +5,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
스크랩하기
-
+
@@ -18,7 +18,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가