From da8c5ebe40728d8eab9fdd9eb11a5449ba76f3a0 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Mon, 11 Mar 2013 15:11:58 +0900 Subject: [PATCH 01/20] =?UTF-8?q?=EB=B8=8C=EB=9D=BC=EC=9A=B0=EC=A0=80?= =?UTF-8?q?=EC=97=90=20wav=EB=A5=BC=20=EC=8B=A4=ED=96=89=ED=95=98=EA=B8=B0?= =?UTF-8?q?=20=EC=9C=84=ED=95=9C=20=ED=94=8C=EB=9F=AC=EA=B7=B8=EC=9D=B8?= =?UTF-8?q?=EC=9D=B4=20=EC=97=86=EB=8B=A4=EB=A9=B4=20=EC=9D=8C=EC=84=B1=20?= =?UTF-8?q?=EC=BA=A1=EC=B1=A0=EB=8A=94=20=EC=A7=80=EC=9B=90=EB=90=98?= =?UTF-8?q?=EC=A7=80=20=EC=95=8A=EC=9D=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/gcaptcha/gcaptcha.lib.php | 5 ++- bbs/gcaptcha/wav.php | 74 ----------------------------------- 2 files changed, 3 insertions(+), 76 deletions(-) delete mode 100644 bbs/gcaptcha/wav.php diff --git a/bbs/gcaptcha/gcaptcha.lib.php b/bbs/gcaptcha/gcaptcha.lib.php index a1b9af3a2..4f9bf841b 100644 --- a/bbs/gcaptcha/gcaptcha.lib.php +++ b/bbs/gcaptcha/gcaptcha.lib.php @@ -172,6 +172,7 @@ function captcha_html($class='captcha') $obj = new gcaptcha(); $obj->run(); + $rand = rand(); $jpg_file_url = G4_DATA_URL.'/cache/'.$obj->captcha_filename.'.jpg'; $wav_file_url = G4_DATA_URL.'/cache/'.$obj->captcha_filename.'.wav'; @@ -179,8 +180,8 @@ function captcha_html($class='captcha') $html .= PHP_EOL.''; $html .= '
'; $html .= '자동등록방지'; - $html .= '자동등록방지 숫자'; - $html .= '숫자를 음성으로 듣기'; + $html .= '자동등록방지 숫자'; + $html .= '숫자를 음성으로 듣기'; $html .= ''; $html .= '

자동등록방지 숫자를 순서대로 입력하세요.

'; $html .= '
'; diff --git a/bbs/gcaptcha/wav.php b/bbs/gcaptcha/wav.php deleted file mode 100644 index f45405a9e..000000000 --- a/bbs/gcaptcha/wav.php +++ /dev/null @@ -1,74 +0,0 @@ - 16){ - $header .= fread($fp,($info['Subchunk1Size']-16)); - } - - // read SubChunk2ID - $header .= fread($fp,4); - - // read Subchunk2Size - $size = unpack('vsize',fread($fp, 4)); - $size = $size['size']; - - // read data - $data .= fread($fp,$size); - } - - return '' - .pack('a4', 'RIFF') - .pack('V', strlen($data) + 36) - .pack('a4', 'WAVE') - .pack('a4', 'fmt ') - .pack('V', $info['Subchunk1Size']) // 16 - .pack('v', $info['AudioFormat']) // 1 - .pack('v', $info['NumChannels']) // 1 - .pack('V', $info['SampleRate']) // 8000 - .pack('V', $info['ByteRate']) // 8000 - .pack('v', $info['BlockAlign']) // 1 - .pack('v', $info['BitsPerSample']) // 8 - .pack('a4', 'data') - .pack('V', strlen($data)) - .$data; -} -?> From 87343642584a01bfd459dd61e319f3947155d7fc Mon Sep 17 00:00:00 2001 From: chicpro Date: Mon, 11 Mar 2013 15:12:21 +0900 Subject: [PATCH 02/20] =?UTF-8?q?#370=20bbs=20=ED=8F=B4=EB=8D=94=EB=82=B4?= =?UTF-8?q?=20PHP=5FEOL=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/ckeditor/ckeditor.lib.php | 10 +++++----- bbs/gcaptcha/gcaptcha.lib.php | 14 +++++++------- bbs/memo_form.php | 14 +++++++------- bbs/move_update.php | 2 +- bbs/view_comment.php | 2 +- bbs/write_comment_update.php | 2 +- bbs/write_update.php | 2 +- 7 files changed, 23 insertions(+), 23 deletions(-) diff --git a/bbs/ckeditor/ckeditor.lib.php b/bbs/ckeditor/ckeditor.lib.php index 26017287d..b27798394 100644 --- a/bbs/ckeditor/ckeditor.lib.php +++ b/bbs/ckeditor/ckeditor.lib.php @@ -1,16 +1,16 @@ '; - $html .= PHP_EOL.''; - $html .= PHP_EOL.''; + $html .= "\n".''; + $html .= "\n".''; + $html .= "\n".''; $js = false; } @@ -21,7 +21,7 @@ function editor_html($id, $content, $ckeditor=true, $class="") // textarea 로 값을 넘긴다. javascript 반드시 필요 -function get_editor_js($id, $ckeditor=true) +function get_editor_js($id, $ckeditor=true) { if ( $ckeditor ) { return "var {$id}_editor_data = CKEDITOR.instances.{$id}.getData();\n"; diff --git a/bbs/gcaptcha/gcaptcha.lib.php b/bbs/gcaptcha/gcaptcha.lib.php index a1b9af3a2..38a7daaf0 100644 --- a/bbs/gcaptcha/gcaptcha.lib.php +++ b/bbs/gcaptcha/gcaptcha.lib.php @@ -1,7 +1,7 @@ get_captcha_key(); - + set_session('ss_captcha_cnt', 0); set_session('ss_captcha_key', $captcha_key); @@ -125,7 +125,7 @@ class gcaptcha imagejpeg($im, G4_DATA_PATH.'/cache/'.$this->captcha_filename.'.jpg'); imagedestroy($im); - $this->make_wav($this->captcha_filename.'.wav'); + $this->make_wav($this->captcha_filename.'.wav'); } function get_captcha_filename() @@ -152,7 +152,7 @@ class gcaptcha } /* -사용법 : +사용법 : $gcaptcha = new gcaptcha(); $gcaptcha->set_captcha_length(mt_rand(4, 6)); $gcaptcha->set_position(mt_rand(0, 10), mt_rand(15, 20)); @@ -175,8 +175,8 @@ function captcha_html($class='captcha') $jpg_file_url = G4_DATA_URL.'/cache/'.$obj->captcha_filename.'.jpg'; $wav_file_url = G4_DATA_URL.'/cache/'.$obj->captcha_filename.'.wav'; - $html .= PHP_EOL.''; - $html .= PHP_EOL.''; + $html .= "\n".''; + $html .= "\n".''; $html .= '
'; $html .= '자동등록방지'; $html .= '자동등록방지 숫자'; diff --git a/bbs/memo_form.php b/bbs/memo_form.php index be6b4c4a6..eb60c03fa 100644 --- a/bbs/memo_form.php +++ b/bbs/memo_form.php @@ -5,16 +5,16 @@ include_once(G4_GCAPTCHA_PATH.'/gcaptcha.lib.php'); if ($is_guest) alert_close('회원만 이용하실 수 있습니다.'); -if (!$member['mb_open'] && $is_admin != 'super' && $member['mb_id'] != $mb_id) +if (!$member['mb_open'] && $is_admin != 'super' && $member['mb_id'] != $mb_id) alert_close("자신의 정보를 공개하지 않으면 다른분에게 쪽지를 보낼 수 없습니다. 정보공개 설정은 회원정보수정에서 하실 수 있습니다."); $content = ""; // 탈퇴한 회원에게 쪽지 보낼 수 없음 -if ($me_recv_mb_id) +if ($me_recv_mb_id) { $mb = get_member($me_recv_mb_id); if (!$mb['mb_id']) - alert_close('회원정보가 존재하지 않습니다.'.PHP_EOL.PHP_EOL.'탈퇴하였을 수 있습니다.'); + alert_close('회원정보가 존재하지 않습니다.\\n\\n탈퇴하였을 수 있습니다.'); if (!$mb['mb_open'] && $is_admin != 'super') alert_close('정보공개를 하지 않았습니다.'); @@ -23,10 +23,10 @@ if ($me_recv_mb_id) $row = sql_fetch(" select me_memo from {$g4['memo_table']} where me_id = '{$me_id}' and (me_recv_mb_id = '{$member['mb_id']}' or me_send_mb_id = '{$member['mb_id']}') "); if ($row['me_memo']) { - $content = PHP_EOL.PHP_EOL.PHP_EOL.' >' - .PHP_EOL.' >' - .PHP_EOL.' >'.preg_replace("/\n/", "\n> ", get_text($row[me_memo], 0)) - .PHP_EOL.' >' + $content = "\n\n\n".' >' + ."\n".' >' + ."\n".' >'.preg_replace("/\n/", "\n> ", get_text($row['me_memo'], 0)) + ."\n".' >' .' >'; } diff --git a/bbs/move_update.php b/bbs/move_update.php index ac844ec94..e58020d48 100644 --- a/bbs/move_update.php +++ b/bbs/move_update.php @@ -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'] .= "\n".'
[이 게시물은 '.$nick.'님에 의해 '.G4_TIME_YMDHIS.' '.$board['bo_subject'].'에서 '.($sw == 'copy' ? '복사' : '이동').' 됨]
'; $sql = " insert into $move_write_table set wr_num = '$next_wr_num', diff --git a/bbs/view_comment.php b/bbs/view_comment.php index 682fc56a9..2c84f8f39 100644 --- a/bbs/view_comment.php +++ b/bbs/view_comment.php @@ -114,7 +114,7 @@ else include_once($board_skin_path.'/view_comment.skin.php'); if (!$member['mb_id']) // 비회원일 경우에만 - echo ''.PHP_EOL; + echo ''."\n"; @include_once($board_skin_path.'/view_comment.tail.skin.php'); ?> \ No newline at end of file diff --git a/bbs/write_comment_update.php b/bbs/write_comment_update.php index 754b85371..3b818daf7 100644 --- a/bbs/write_comment_update.php +++ b/bbs/write_comment_update.php @@ -67,7 +67,7 @@ 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]).')가 불가합니다.\\n\\n포인트를 적립하신 후 다시 댓글를 써 주십시오.'); */ // 댓글쓰기 포인트설정시 회원의 포인트가 음수인 경우 댓글를 쓰지 못하던 버그를 수정 (곱슬최씨님) $tmp_point = ($member['mb_point'] > 0) ? $member['mb_point'] : 0; diff --git a/bbs/write_update.php b/bbs/write_update.php index 57f4fae6b..4f8ea92f3 100644 --- a/bbs/write_update.php +++ b/bbs/write_update.php @@ -349,7 +349,7 @@ if ($w == '' || $w == 'r') { // 쓰기 포인트 부여 if ($w == '') { if ($notice) { - $bo_notice = $wr_id.PHP_EOL.$board['bo_notice']; + $bo_notice = $wr_id."\n".$board['bo_notice']; sql_query(" update {$g4['board_table']} set bo_notice = '{$bo_notice}' where bo_table = '{$bo_table}' "); } From a2d0a1be012e300ae4334cdc8a5746ff88289874 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Mon, 11 Mar 2013 15:13:43 +0900 Subject: [PATCH 03/20] =?UTF-8?q?=EB=8D=94=EC=9D=B4=EC=83=81=20=EC=82=AC?= =?UTF-8?q?=EC=9A=A9=EB=90=98=EC=A7=80=20=EC=95=8A=EB=8A=94=20=ED=8C=8C?= =?UTF-8?q?=EC=9D=BC=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/member_email_check.php | 45 --------------------------------- bbs/member_id_check.php | 39 ----------------------------- bbs/member_nick_check.php | 51 -------------------------------------- test.php | 13 +--------- 4 files changed, 1 insertion(+), 147 deletions(-) delete mode 100644 bbs/member_email_check.php delete mode 100644 bbs/member_id_check.php delete mode 100644 bbs/member_nick_check.php diff --git a/bbs/member_email_check.php b/bbs/member_email_check.php deleted file mode 100644 index e9a796500..000000000 --- a/bbs/member_email_check.php +++ /dev/null @@ -1,45 +0,0 @@ - '{$member[mb_id]}' "; -else - $sql = " select mb_email from {$g4[member_table]} where mb_email = '{$mb_email}' "; -$row = sql_fetch($sql); - -if ($row[mb_email]) { - echo << - alert(''.$mb_email.'은(는) 이미 다른 회원이 사용하는 E-mail이므로 사용하실 수 없습니다.'); - //opener.fmbform.mb_email_enabled.value = "0"; // 새창으로 열 경우에... - parent.document.getElementById('mb_email_enabled').value = -1; - window.close(); - -HEREDOC; -} else { - if (!preg_match("/([0-9a-zA-Z_-]+)@([0-9a-zA-Z_-]+)\.([0-9a-zA-Z_-]+)/", $mb_email)) { - echo << - alert(''.$mb_email.'은(는) E-mail 주소 형식이 아니므로 사용하실 수 없습니다.'); - parent.document.getElementById('mb_email_enabled').value = ''; - window.close(); - -HEREDOC; - } else { - echo << - alert(''.$mb_email.'은(는) 중복된 E-mail이 없습니다.'.PHP_EOL.PHP_EOL.'사용하셔도 좋습니다.'); - parent.document.getElementById('mb_email_enabled').value = 1; - window.close(); - -HEREDOC; - } -} - -include_once(G4_PATH.'/tail.sub.php'); -?> \ No newline at end of file diff --git a/bbs/member_id_check.php b/bbs/member_id_check.php deleted file mode 100644 index 96362466e..000000000 --- a/bbs/member_id_check.php +++ /dev/null @@ -1,39 +0,0 @@ - - '; - - '; - - '; - \ No newline at end of file diff --git a/bbs/member_nick_check.php b/bbs/member_nick_check.php deleted file mode 100644 index db5e86321..000000000 --- a/bbs/member_nick_check.php +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/test.php b/test.php index f4ccb9dae..30b07f815 100644 --- a/test.php +++ b/test.php @@ -1,12 +1 @@ - \ No newline at end of file + \ No newline at end of file From 6880e82db855bd6357f3274824755d68a5329689 Mon Sep 17 00:00:00 2001 From: whitedot Date: Mon, 11 Mar 2013 15:15:18 +0900 Subject: [PATCH 04/20] =?UTF-8?q?=EC=82=AC=EC=9D=B4=EB=93=9C=EB=B7=B0=20#3?= =?UTF-8?q?71=20=EC=97=90=20=EB=94=B0=EB=A5=B8=20=EC=B2=98=EB=A6=AC,=20?= =?UTF-8?q?=EB=B0=8F=20#325=20=EC=9D=98=EA=B2=AC=201=20=EC=97=90=20?= =?UTF-8?q?=EB=94=B0=EB=A5=B8=20=EC=83=88=EC=B0=BD=20=EC=95=8C=EB=A6=BC=20?= =?UTF-8?q?=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/admin.css | 25 +++++++++++-------------- css/default.css | 2 +- lib/common.lib.php | 4 ++-- tail.sub.php | 2 ++ 4 files changed, 16 insertions(+), 17 deletions(-) diff --git a/css/admin.css b/css/admin.css index 0a8de5b21..a87fcd919 100644 --- a/css/admin.css +++ b/css/admin.css @@ -288,22 +288,22 @@ td {padding:8px 5px 6px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9 .new_win_ul a {display:block;padding:10px 10px 8px;border-right:1px solid #595959;border-left:1px solid #595959;color:#fff;font-family:"dotum";font-weight:bold;text-decoration:none} .new_win_desc {margin:0 auto;width:93%} -/* 사이드뷰 */ -.sv_wrap {display:inline-block;position:relative;font-weight:normal} -.sv_wrap .sv {z-index:5;display:none;margin:5px 0 0;border:1px solid #283646;background:#334356} -.sv_nojs .sv {display:block} -.sv_wrap .sv a {display:inline-block !important;margin:0 !important;padding:3px !important;width:94px;border-bottom:1px solid #283646;color:#fff !important} -.sv_wrap a:focus, -.sv_wrap a:hover, -.sv_wrap a:active {text-decoration:none !important} -.sv_on {display:block !important;position:absolute;top:10px;left:20px;width:auto;height:auto !important;background:#ddd} - /* 관리자 패스워드 확인 */ #admin_confirm {padding:0 0 10px;background:#222;text-align:center} #admin_confirm p {margin:0 0 10px;color:#9ab9c5;background:#383a3f} #admin_confirm label {color:#fff} #admin_confirm .frm_input {border-color:#000} +/* 사이드뷰 */ +.sv_wrap {display:inline-block;position:relative;font-weight:normal} +.sv_wrap .sv {z-index:5;display:none;margin:5px 0 0;border:1px solid #283646;background:#334356} +.sv_js_off .sv {display:block} +.sv_wrap .sv a {display:inline-block !important;margin:0 !important;padding:3px !important;width:94px;border-bottom:1px solid #283646;color:#fff !important} +.sv_wrap a:focus, +.sv_wrap a:hover, +.sv_wrap a:active {text-decoration:none !important} +.sv_on {display:block !important;position:absolute;top:10px;left:20px;width:auto;height:auto !important;background:#ddd} + /* pagination */ .pg_wrap {clear:both;margin:0 0 20px;padding-top:20px;text-align:center} .pg {display:inline-block;border:1px solid #ddd;letter-spacing:-4px} @@ -317,7 +317,4 @@ td {padding:8px 5px 6px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9 .pg_prev {border-right:1px solid #ddd} .pg_end, .pg_next {border-left:1px solid #ddd} -.pg_current {background:#444;color:#fff;font-weight:bold} - -/* 스킨자료실 바로가기 */ -.goto_sirskin {color:#ff5300} \ No newline at end of file +.pg_current {background:#444;color:#fff;font-weight:bold} \ No newline at end of file diff --git a/css/default.css b/css/default.css index 6d4ae8f9c..400fd1301 100644 --- a/css/default.css +++ b/css/default.css @@ -641,7 +641,7 @@ fieldset button {padding:0 15px;height:24px;border:0;background:#333;color:#fff; /* 사이드뷰 */ .sv_wrap {display:inline-block;position:relative;font-weight:normal} .sv_wrap .sv {z-index:1000;display:none;margin:5px 0 0;border:1px solid #283646;background:#111} -.sv_nojs .sv {display:block} +.sv_js_off .sv {display:block} .sv_wrap .sv a {display:inline-block !important;margin:0 !important;padding:3px !important;width:94px;border-bottom:1px solid #283646;color:#fff !important} .sv_wrap a:focus, .sv_wrap a:hover, diff --git a/lib/common.lib.php b/lib/common.lib.php index f18bd6476..1475dff6c 100644 --- a/lib/common.lib.php +++ b/lib/common.lib.php @@ -998,7 +998,7 @@ function get_sideview($mb_id, $name='', $email='', $homepage='') $email = get_text($email); $homepage = get_text($homepage); - $str = "\n"; + $str = "\n"; $str .= $tmp_name."\n"; if(!G4_IS_MOBILE) { @@ -1024,7 +1024,7 @@ function get_sideview($mb_id, $name='', $email='', $homepage='') $str2 .= "포인트내역\n"; } $str2 .= "\n"; - $str .= $str2."\n"; + $str .= $str2;//."\n"; } $str .= ""; diff --git a/tail.sub.php b/tail.sub.php index c129f0625..6360af7b9 100644 --- a/tail.sub.php +++ b/tail.sub.php @@ -21,6 +21,8 @@ $(function() { ", $str); - // FLASH XSS 공격에 의해 주석 처리 - 110406 - //$str = preg_replace("/\[\\]/i", "", $str); - $str = preg_replace("/\[\]*\>[^\s]*\<\/a\>\]/i", "", $str); ?>
style="margin-left:px;border-top-color:#e0e0e0">
diff --git a/mobile/skin/board/gallery/view_comment.skin.php b/mobile/skin/board/gallery/view_comment.skin.php index a16dea2f3..c85548b8f 100644 --- a/mobile/skin/board/gallery/view_comment.skin.php +++ b/mobile/skin/board/gallery/view_comment.skin.php @@ -20,9 +20,6 @@ var char_max = parseInt(); // 최대 if (strstr($list[$i]['wr_option'], "secret")) $str = $str; $str = preg_replace("/\[\\]/i", "", $str); - // FLASH XSS 공격에 의해 주석 처리 - 110406 - //$str = preg_replace("/\[\\]/i", "", $str); - $str = preg_replace("/\[\]*\>[^\s]*\<\/a\>\]/i", "", $str); ?>
style="margin-left:px;border-top-color:#e0e0e0">
diff --git a/skin/board/basic/view_comment.skin.php b/skin/board/basic/view_comment.skin.php index 5a512d57d..9b1460fbc 100644 --- a/skin/board/basic/view_comment.skin.php +++ b/skin/board/basic/view_comment.skin.php @@ -20,9 +20,6 @@ var char_max = parseInt(); // 최대 if (strstr($list[$i]['wr_option'], "secret")) $str = $str; $str = preg_replace("/\[\\]/i", "", $str); - // FLASH XSS 공격에 의해 주석 처리 - 110406 - //$str = preg_replace("/\[\\]/i", "", $str); - $str = preg_replace("/\[\]*\>[^\s]*\<\/a\>\]/i", "", $str); ?>
style="margin-left:px;border-top-color:#e0e0e0">
diff --git a/skin/board/gallery/view_comment.skin.php b/skin/board/gallery/view_comment.skin.php index a16dea2f3..c85548b8f 100644 --- a/skin/board/gallery/view_comment.skin.php +++ b/skin/board/gallery/view_comment.skin.php @@ -20,9 +20,6 @@ var char_max = parseInt(); // 최대 if (strstr($list[$i]['wr_option'], "secret")) $str = $str; $str = preg_replace("/\[\\]/i", "", $str); - // FLASH XSS 공격에 의해 주석 처리 - 110406 - //$str = preg_replace("/\[\\]/i", "", $str); - $str = preg_replace("/\[\]*\>[^\s]*\<\/a\>\]/i", "", $str); ?>
style="margin-left:px;border-top-color:#e0e0e0">
From 793aef6af842685c2b8d5250523370f579b5d7be Mon Sep 17 00:00:00 2001 From: whitedot Date: Mon, 11 Mar 2013 15:21:13 +0900 Subject: [PATCH 07/20] =?UTF-8?q?=EA=B4=80=EB=A6=AC=EC=9E=90:=20=EA=B2=8C?= =?UTF-8?q?=EC=8B=9C=ED=8C=90=20=EB=AA=A9=EB=A1=9D=EC=9D=98=20colspan=20?= =?UTF-8?q?=EA=B0=92=20=EC=A1=B0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/board_list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adm/board_list.php b/adm/board_list.php index be986bb24..1eabf8a4c 100644 --- a/adm/board_list.php +++ b/adm/board_list.php @@ -53,7 +53,7 @@ if ($sfl || $stx) // 검색렬일 때만 처음 버튼을 보여줌 $g4['title'] = '게시판관리'; include_once('./admin.head.php'); -$colspan = 8; +$colspan = 15; ?>
From 998094f1653921738464469a39b490f202f0a38f Mon Sep 17 00:00:00 2001 From: whitedot Date: Mon, 11 Mar 2013 15:30:49 +0900 Subject: [PATCH 08/20] =?UTF-8?q?=EA=B4=80=EB=A6=AC=EC=9E=90:=20=ED=9A=8C?= =?UTF-8?q?=EC=9B=90=20=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=EC=A4=91=20=EB=A9=94?= =?UTF-8?q?=EC=84=B8=EC=A7=80=20=EC=A4=91=EB=B3=B5=20=EC=B6=9C=EB=A0=A5=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/admin.head.php | 1 - 1 file changed, 1 deletion(-) diff --git a/adm/admin.head.php b/adm/admin.head.php index 48a0a81e7..2633e8352 100644 --- a/adm/admin.head.php +++ b/adm/admin.head.php @@ -57,7 +57,6 @@ function imageview(id, w, h) } -님 로그인 중
From f243e38c05629d61f9cc92999c706806fc08a119 Mon Sep 17 00:00:00 2001 From: chicpro Date: Mon, 11 Mar 2013 16:14:34 +0900 Subject: [PATCH 09/20] =?UTF-8?q?#365=20=EC=97=90=20=EB=94=B0=EB=A5=B8=20?= =?UTF-8?q?=EB=A9=94=EC=9D=BC=20=EC=A0=9C=EB=AA=A9=EC=97=90=20=EC=82=AC?= =?UTF-8?q?=EC=9D=B4=ED=8A=B8=EB=AA=85=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/register_form_update.php | 8 ++++---- bbs/write_comment_update.php | 6 +++--- bbs/write_update.php | 2 +- skin/member/basic/password_lost2.skin.php | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/bbs/register_form_update.php b/bbs/register_form_update.php index 47526889e..d595827e6 100644 --- a/bbs/register_form_update.php +++ b/bbs/register_form_update.php @@ -194,7 +194,7 @@ if ($w == '') { // 회원님께 메일 발송 if ($config['cf_email_mb_member']) { - $subject = '회원가입을 축하드립니다.'; + $subject = '['.$config['cf_title'].'] 회원가입을 축하드립니다.'; $mb_md5 = md5($mb_id.$mb_email.G4_TIME_YMDHIS); $certify_href = G4_BBS_URL.'/email_certify.php?mb_id='.$mb_id.'&mb_md5='.$mb_md5; @@ -209,7 +209,7 @@ if ($w == '') { // 최고관리자님께 메일 발송 if ($config['cf_email_mb_super_admin']) { - $subject = $mb_nick .' 님께서 회원으로 가입하셨습니다.'; + $subject = '['.$config['cf_title'].'] '.$mb_nick .' 님께서 회원으로 가입하셨습니다.'; ob_start(); include_once ('./register_form_update_mail2.php'); @@ -295,7 +295,7 @@ if ($w == '') { // 인증메일 발송 if ($old_email != $mb_email && $config['cf_use_email_certify']) { - $subject = '인증확인 메일입니다.'; + $subject = '['.$config['cf_title'].'] 인증확인 메일입니다.'; $mb_md5 = md5($mb_id.$mb_email.$member['mb_datetime']); $certify_href = G4_BBS_URL.'/email_certify.php?mb_id='.$mb_id.'&mb_md5='.$mb_md5; @@ -320,7 +320,7 @@ if ($msg) if ($w == "") { goto_url(G4_BBS_URL.'/register_result.php'); } else if ($w == 'u') { - $row = sql_fetch(" select mb_password from {$g4['member_table']} where mb_id = '{$member[mb_id]}' "); + $row = sql_fetch(" select mb_password from {$g4['member_table']} where mb_id = '{$member['mb_id']}' "); $tmp_password = $row['mb_password']; if ($old_email != $mb_email && $config['cf_use_email_certify']) { diff --git a/bbs/write_comment_update.php b/bbs/write_comment_update.php index 3b818daf7..8614d683c 100644 --- a/bbs/write_comment_update.php +++ b/bbs/write_comment_update.php @@ -48,7 +48,7 @@ if (empty($wr['wr_id'])) // 이 옵션을 사용 안 함으로 설정할 경우 어떤 스크립트도 실행 되지 않습니다. //if (!trim($_POST["wr_content"])) die ("내용을 입력하여 주십시오."); -if ($member[mb_id]) +if ($is_member) { $mb_id = $member['mb_id']; // 4.00.13 - 실명 사용일때 댓글에 별명으로 입력되던 오류를 수정 @@ -193,7 +193,7 @@ if ($w == 'c') // 댓글 입력 $warr = array( ''=>'입력', 'u'=>'수정', 'r'=>'답변', 'c'=>'댓글 ', 'cu'=>'댓글 수정' ); $str = $warr[$w]; - $subject = $board['bo_subject'].' 게시판에 '.$str.'글이 올라왔습니다.'; + $subject = '['.$config['cf_title'].'] '.$board['bo_subject'].' 게시판에 '.$str.'글이 올라왔습니다.'; // 4.00.15 - 메일로 보내는 댓글의 바로가기 링크 수정 $link_url = G4_BBS_URL."/board.php?bo_table=".$bo_table."&wr_id=".$wr_id."&".$qstr."#c_".$comment_id; @@ -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.php b/bbs/write_update.php index 4f8ea92f3..6864a17da 100644 --- a/bbs/write_update.php +++ b/bbs/write_update.php @@ -561,7 +561,7 @@ if (!($w == 'u' || $w == 'cu') && $config['cf_email_use'] && $board['bo_use_emai $warr = array( ''=>'입력', 'u'=>'수정', 'r'=>'답변', 'c'=>'코멘트', 'cu'=>'코멘트 수정' ); $str = $warr[$w]; - $subject = '"'.$board['bo_subject'].'" 게시판에 '.$str.'글이 올라왔습니다.'; + $subject = '['.$config['cf_title'].'] "'.$board['bo_subject'].'" 게시판에 '.$str.'글이 올라왔습니다.'; $link_url = G4_BBS_URL.'/board.php?bo_table='.$bo_table.'&wr_id='.$wr_id.'&'.$qstr; include_once(G4_LIB_PATH.'/mailer.lib.php'); diff --git a/skin/member/basic/password_lost2.skin.php b/skin/member/basic/password_lost2.skin.php index b32585831..22cfc5bea 100644 --- a/skin/member/basic/password_lost2.skin.php +++ b/skin/member/basic/password_lost2.skin.php @@ -39,7 +39,7 @@ sql_query($sql); $href = G4_BBS_URL.'/password_lost_certify.php?mb_no='.$mb['mb_no'].'&mb_datetime='.$mb_datetime.'&mb_lost_certify='.$mb_lost_certify; -$subject = $config['cf_title']."요청하신 회원 아이디/패스워드 정보입니다."; +$subject = '['.$config['cf_title'].'] 요청하신 회원 아이디/패스워드 정보입니다.'; $content = ""; From 6e41ba1cd047224dc7de6c927f9c3075c3a611f1 Mon Sep 17 00:00:00 2001 From: whitedot Date: Mon, 11 Mar 2013 16:20:17 +0900 Subject: [PATCH 10/20] =?UTF-8?q?#365=20=EC=97=90=20=EB=94=B0=EB=A5=B8=20?= =?UTF-8?q?=EB=A9=94=EC=9D=BC=20=EC=A0=9C=EB=AA=A9=EC=97=90=20=EC=82=AC?= =?UTF-8?q?=EC=9D=B4=ED=8A=B8=EB=AA=85=20=EC=B6=94=EA=B0=80=20-=20?= =?UTF-8?q?=EC=A7=80=EC=9A=B4=EC=95=84=EB=B9=A0=20ver?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/admin.head.php | 2 +- bbs/poll_etc_update.php | 2 +- bbs/register_form_update.php | 6 +++--- bbs/write_update.php | 2 +- skin/member/basic/password_lost2.skin.php | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/adm/admin.head.php b/adm/admin.head.php index 2633e8352..48f03513b 100644 --- a/adm/admin.head.php +++ b/adm/admin.head.php @@ -57,7 +57,7 @@ function imageview(id, w, h) } - +
diff --git a/bbs/poll_etc_update.php b/bbs/poll_etc_update.php index 4df4e6cbf..f2168e3b8 100644 --- a/bbs/poll_etc_update.php +++ b/bbs/poll_etc_update.php @@ -37,7 +37,7 @@ if ($w == '') // 관리자에게 보내는 메일 $admin = get_admin('super'); $from_email = $member['mb_email'] ? $member['mb_email'] : $admin['mb_email']; - mailer($name, $from_email, $admin['mb_email'], '설문조사 기타의견 메일', $content, 1); + mailer($name, $from_email, $admin['mb_email'], '['.$config['cf_title'].'] 설문조사 기타의견 메일', $content, 1); } } else if ($w == 'd') diff --git a/bbs/register_form_update.php b/bbs/register_form_update.php index 47526889e..88234c677 100644 --- a/bbs/register_form_update.php +++ b/bbs/register_form_update.php @@ -194,7 +194,7 @@ if ($w == '') { // 회원님께 메일 발송 if ($config['cf_email_mb_member']) { - $subject = '회원가입을 축하드립니다.'; + $subject = '['.$config['cf_title'].'] 회원가입을 축하드립니다.'; $mb_md5 = md5($mb_id.$mb_email.G4_TIME_YMDHIS); $certify_href = G4_BBS_URL.'/email_certify.php?mb_id='.$mb_id.'&mb_md5='.$mb_md5; @@ -209,7 +209,7 @@ if ($w == '') { // 최고관리자님께 메일 발송 if ($config['cf_email_mb_super_admin']) { - $subject = $mb_nick .' 님께서 회원으로 가입하셨습니다.'; + $subject = '['.$config['cf_title'].'] '.$mb_nick .' 님께서 회원으로 가입하셨습니다.'; ob_start(); include_once ('./register_form_update_mail2.php'); @@ -295,7 +295,7 @@ if ($w == '') { // 인증메일 발송 if ($old_email != $mb_email && $config['cf_use_email_certify']) { - $subject = '인증확인 메일입니다.'; + $subject = '['.$config['cf_title'].'] 인증확인 메일입니다.'; $mb_md5 = md5($mb_id.$mb_email.$member['mb_datetime']); $certify_href = G4_BBS_URL.'/email_certify.php?mb_id='.$mb_id.'&mb_md5='.$mb_md5; diff --git a/bbs/write_update.php b/bbs/write_update.php index 4f8ea92f3..26a660bd6 100644 --- a/bbs/write_update.php +++ b/bbs/write_update.php @@ -561,7 +561,7 @@ if (!($w == 'u' || $w == 'cu') && $config['cf_email_use'] && $board['bo_use_emai $warr = array( ''=>'입력', 'u'=>'수정', 'r'=>'답변', 'c'=>'코멘트', 'cu'=>'코멘트 수정' ); $str = $warr[$w]; - $subject = '"'.$board['bo_subject'].'" 게시판에 '.$str.'글이 올라왔습니다.'; + $subject = '['.$config['cf_title'].'] '.$board['bo_subject'].' 게시판에 '.$str.'글이 올라왔습니다.'; $link_url = G4_BBS_URL.'/board.php?bo_table='.$bo_table.'&wr_id='.$wr_id.'&'.$qstr; include_once(G4_LIB_PATH.'/mailer.lib.php'); diff --git a/skin/member/basic/password_lost2.skin.php b/skin/member/basic/password_lost2.skin.php index b32585831..7fffff044 100644 --- a/skin/member/basic/password_lost2.skin.php +++ b/skin/member/basic/password_lost2.skin.php @@ -39,7 +39,7 @@ sql_query($sql); $href = G4_BBS_URL.'/password_lost_certify.php?mb_no='.$mb['mb_no'].'&mb_datetime='.$mb_datetime.'&mb_lost_certify='.$mb_lost_certify; -$subject = $config['cf_title']."요청하신 회원 아이디/패스워드 정보입니다."; +$subject = "[".$config['cf_title']."] 요청하신 회원 아이디/패스워드 정보입니다."; $content = ""; From ed49e6e5c3a083102c50f573aebe2fef95183dc6 Mon Sep 17 00:00:00 2001 From: chicpro Date: Mon, 11 Mar 2013 16:33:20 +0900 Subject: [PATCH 11/20] =?UTF-8?q?=EB=AA=A8=EB=B0=94=EC=9D=BC=EC=97=90=20kc?= =?UTF-8?q?pcert=20=EC=8A=A4=ED=82=A8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mobile/skin/member/kcpcert/formmail.skin.php | 90 +++++ .../member/kcpcert/img/reg_result_logo.jpg | Bin 0 -> 2108 bytes mobile/skin/member/kcpcert/login.skin.php | 54 +++ .../skin/member/kcpcert/login_check.skin.php | 5 + .../member/kcpcert/member_confirm.skin.php | 44 +++ mobile/skin/member/kcpcert/memo.skin.php | 44 +++ mobile/skin/member/kcpcert/memo_form.skin.php | 54 +++ mobile/skin/member/kcpcert/memo_view.skin.php | 48 +++ mobile/skin/member/kcpcert/password.skin.php | 49 +++ .../member/kcpcert/password_lost.skin.php | 71 ++++ .../member/kcpcert/password_lost2.skin.php | 89 +++++ mobile/skin/member/kcpcert/profile.skin.php | 43 +++ mobile/skin/member/kcpcert/register.skin.php | 49 +++ .../member/kcpcert/register_form.skin.php | 358 ++++++++++++++++++ .../register_form_update.head.skin.php | 54 +++ .../register_form_update.tail.skin.php | 28 ++ .../member/kcpcert/register_result.skin.php | 43 +++ mobile/skin/member/kcpcert/scrap.skin.php | 37 ++ .../skin/member/kcpcert/scrap_popin.skin.php | 34 ++ mobile/skin/member/kcpcert/zip.skin.php | 62 +++ 20 files changed, 1256 insertions(+) create mode 100644 mobile/skin/member/kcpcert/formmail.skin.php create mode 100644 mobile/skin/member/kcpcert/img/reg_result_logo.jpg create mode 100644 mobile/skin/member/kcpcert/login.skin.php create mode 100644 mobile/skin/member/kcpcert/login_check.skin.php create mode 100644 mobile/skin/member/kcpcert/member_confirm.skin.php create mode 100644 mobile/skin/member/kcpcert/memo.skin.php create mode 100644 mobile/skin/member/kcpcert/memo_form.skin.php create mode 100644 mobile/skin/member/kcpcert/memo_view.skin.php create mode 100644 mobile/skin/member/kcpcert/password.skin.php create mode 100644 mobile/skin/member/kcpcert/password_lost.skin.php create mode 100644 mobile/skin/member/kcpcert/password_lost2.skin.php create mode 100644 mobile/skin/member/kcpcert/profile.skin.php create mode 100644 mobile/skin/member/kcpcert/register.skin.php create mode 100644 mobile/skin/member/kcpcert/register_form.skin.php create mode 100644 mobile/skin/member/kcpcert/register_form_update.head.skin.php create mode 100644 mobile/skin/member/kcpcert/register_form_update.tail.skin.php create mode 100644 mobile/skin/member/kcpcert/register_result.skin.php create mode 100644 mobile/skin/member/kcpcert/scrap.skin.php create mode 100644 mobile/skin/member/kcpcert/scrap_popin.skin.php create mode 100644 mobile/skin/member/kcpcert/zip.skin.php diff --git a/mobile/skin/member/kcpcert/formmail.skin.php b/mobile/skin/member/kcpcert/formmail.skin.php new file mode 100644 index 000000000..ebd491bcf --- /dev/null +++ b/mobile/skin/member/kcpcert/formmail.skin.php @@ -0,0 +1,90 @@ + + +
+

님께 메일보내기

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
메일쓰기
형식 + + + +
자동등록방지
+ +
+ + 창닫기 +
+ + +
+ + diff --git a/mobile/skin/member/kcpcert/img/reg_result_logo.jpg b/mobile/skin/member/kcpcert/img/reg_result_logo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9bdf4f72df0a38fc4b3b112a1930818bce46f6e8 GIT binary patch literal 2108 zcma)5c{~*Q7XQs+m_ZC<7^A{4BeIM&M3#$ZWU?h$Q=`#tA;KIilOe$F}nd=LLU|058mSle0y2owO? zb^!i7K>recA}|U-037^90{$Y{VNN@9+z-&2wiyV27$gJ8-v{)+fc?aO#-R|%wz^$E zg}>YIn*dq}C;>ef1P!2Q2n-G3w}B7$YxL;i>RwD3|E@h!(S;cL- zkCuxe=3{m7>Gn;P+WUTRKZKQV$~ckUX}23z_bKn?bRyk*0Tb6VUYYJjyy?_Abr=P= zewbd96ZyskIOGfDFeI@TMrCUm^nl#{>O6v7&$+?ZHYO=q?S64Znn!GGUUy}`OmL`u zv#R4?SrI)~`And&+Bm!6Rmte1*0MJ!SDqf#ew?A4K=o5dudAil`R`*}-?!+`zeUkc z)cqzWi2^8x#z|*nW*2Uua3OE(g>7y%RAp&G%V%f=`$B5hG?N=uZa=MMV4US_*7e2F z(pg+9tUoC~ut~l#!uUqi$gZvOLUOsgidT+=uoc38|0!^(hs8k}9ea{u)oqX6PnCKm zLzqR0wB;XkOV+yO6}e;PftbfHXPhRho_R@!SeH4%Ys!L83I84u;MI*ePf@z@?pl$S zOQz>d#Hpdt!I4J znzj4kYh`L^$W(OILypOflpZ}jTSAi;hZ;d|7ensG6c0{a8=7jYOYMlT3|SzQ1}2`F ztJvA);gS3!G^nrjhN`Ug^jUo805O*0$GY8j!_gr#3I8swy_qbK?w>(2bWfj?oWDMa z{~j`;{)$Gm$dezz>$j)feCyj6rSaa_%721j+RltV#GiN0O8ozh64b|VW53w2V+ zWJE@1X}F9VW_Ty}?w!#?zu_+NL3vt2_;4QX6)`tSSn*)V#Y;jZ1oi6E0c8Ax7<^4) zX44?kyKZ{fN+qN$Bt;Y!$ufjcrRnse~gA}i=AO_=EybJ6Ly&h2UQLDtzgzI zYYxNqZe%$IIVCz>f)lYhP5n%%f^b2I6<&Qft~d2VjNdF5KT=T@G`sNdFgD3e=G@wB zYLz%fnX6DLv~@?`g>7kPUW9X=%Ya4{Q7SGkpoSY{noJi}&y^}{lwrSb^L^*33 zPUC6IS$P7ByOdOqdR2Z~w(H^fcy46S2<0^T7*wYB6e%KEOaZ(5rNpOtB;dF&cbgZh zuDBL_lu=TYGntDajqa^^_aST;Vc5?w%2o_LsvYi^{V>$jqkA(s>d6|a+sO0)$>j5E za$pjoPZerwB?5$+;KC8(s~L~$zYhj#%6;g4vBJ_hDq3rck-#nTsGYZsK!HLjs_<*|Eog_3q%MI_!Cwd00rrvAa39m9vj+rNF=w7dv!dA72e(tF|3APef_-8t#0F6oJs6P13eaUzA2tR_)iv1dIkUh literal 0 HcmV?d00001 diff --git a/mobile/skin/member/kcpcert/login.skin.php b/mobile/skin/member/kcpcert/login.skin.php new file mode 100644 index 000000000..aa0c4c5d8 --- /dev/null +++ b/mobile/skin/member/kcpcert/login.skin.php @@ -0,0 +1,54 @@ + + +
+

+ +
+ + +
+ + + + + + + +
+ +
+

회원로그인 안내

+

+ 회원아이디 및 패스워드가 기억 안나실 때는 아이디/패스워드 찾기를 이용하십시오.
+ 아직 회원이 아니시라면 회원으로 가입 후 이용해 주십시오. +

+ +
+ + + +
+ +
+ + diff --git a/mobile/skin/member/kcpcert/login_check.skin.php b/mobile/skin/member/kcpcert/login_check.skin.php new file mode 100644 index 000000000..ef6ec51d6 --- /dev/null +++ b/mobile/skin/member/kcpcert/login_check.skin.php @@ -0,0 +1,5 @@ + diff --git a/mobile/skin/member/kcpcert/member_confirm.skin.php b/mobile/skin/member/kcpcert/member_confirm.skin.php new file mode 100644 index 000000000..776161e40 --- /dev/null +++ b/mobile/skin/member/kcpcert/member_confirm.skin.php @@ -0,0 +1,44 @@ + + +
+

+ +

+ 패스워드를 한번 더 입력해주세요. + 회원님의 정보를 안전하게 보호하기 위해 패스워드를 한번 더 확인합니다. +

+ +
+ + + +
+ 회원아이디 + + + + + +
+ +
+ + + +
+ + diff --git a/mobile/skin/member/kcpcert/memo.skin.php b/mobile/skin/member/kcpcert/memo.skin.php new file mode 100644 index 000000000..3ead603db --- /dev/null +++ b/mobile/skin/member/kcpcert/memo.skin.php @@ -0,0 +1,44 @@ + + +
+

+ + + + + + + + + + + + + + + + + + + + + + + "; } ?> + +
+ 전체 쪽지
+
보낸시간읽은시간관리
삭제
자료가 없습니다.
+ +

+ 쪽지 보관일수는 최장 일 입니다. +

+ + +
\ No newline at end of file diff --git a/mobile/skin/member/kcpcert/memo_form.skin.php b/mobile/skin/member/kcpcert/memo_form.skin.php new file mode 100644 index 000000000..52ebf04ad --- /dev/null +++ b/mobile/skin/member/kcpcert/memo_form.skin.php @@ -0,0 +1,54 @@ + + +
+

쪽지보내기

+ + + +
+
+ + + + + + + + + + + + + + + + +
쪽지쓰기
+ + 여러 회원에게 보낼때는 컴마(,)로 구분하세요. +
자동등록방지 + +
+
+ +
+ + 창닫기 +
+ +
+ + diff --git a/mobile/skin/member/kcpcert/memo_view.skin.php b/mobile/skin/member/kcpcert/memo_view.skin.php new file mode 100644 index 000000000..41ea15ead --- /dev/null +++ b/mobile/skin/member/kcpcert/memo_view.skin.php @@ -0,0 +1,48 @@ + + +
+

+ +
+

쪽지 내용

+
    +
  • + 사람 + +
  • +
  • + 시간 + +
  • +
+

+ +

+
+ +
\ No newline at end of file diff --git a/mobile/skin/member/kcpcert/password.skin.php b/mobile/skin/member/kcpcert/password.skin.php new file mode 100644 index 000000000..adf2c94f9 --- /dev/null +++ b/mobile/skin/member/kcpcert/password.skin.php @@ -0,0 +1,49 @@ + + +
+

+

+ + 작성자만 글을 수정할 수 있습니다. + 작성자 본인이라면, 글 작성시 입력한 패스워드를 입력하여 글을 수정할 수 있습니다. + + 작성자만 글을 삭제할 수 있습니다. + 작성자 본인이라면, 글 작성시 입력한 패스워드를 입력하여 글을 삭제할 수 있습니다. + + 비밀글 기능으로 보호된 글입니다. + 작성자와 관리자만 열람하실 수 있습니다. 본인이라면 패스워드를 입력하세요. + +

+ +
+ + + + + + + + +
+ + + +
+
+ + + +
+ + diff --git a/mobile/skin/member/kcpcert/password_lost.skin.php b/mobile/skin/member/kcpcert/password_lost.skin.php new file mode 100644 index 000000000..b1acbf8b2 --- /dev/null +++ b/mobile/skin/member/kcpcert/password_lost.skin.php @@ -0,0 +1,71 @@ + 2) +// alert_close('회원정보 찾기를 기준 횟수 이상 시도하였습니다.'); +?> + +
+

회원정보 찾기

+ +
+ + +
+

+ 회원가입 시 등록하신 이름과 핸드폰번호를 입력해 주세요. +

+ + + + + + +
+ +
+ + 창닫기 +
+
+
+ + + + diff --git a/mobile/skin/member/kcpcert/password_lost2.skin.php b/mobile/skin/member/kcpcert/password_lost2.skin.php new file mode 100644 index 000000000..4ea51cf51 --- /dev/null +++ b/mobile/skin/member/kcpcert/password_lost2.skin.php @@ -0,0 +1,89 @@ + 2) { + // alert_close('아이디/패스워드 찾기를 기준 횟수 이상 시도하였습니다.'); + //} else { + // $pl_count++; + // set_cookie('ck_passwordlost_count', $pl_count, 60*60*1); + //} +} + +$mb_name = trim($_POST['mb_name']); +$mb_hp = preg_replace("/[^0-9]/", "", $_POST['mb_hp']); + +if(!$mb_name) + alert_close('회원 이름을 입력해 주세요.'); + +if(!$mb_hp) + alert_close('핸드폰번호를 입력해 주세요.'); + +// 휴대폰인증체크 +$kcpcert_no = trim($_POST['kcpcert_no']); +if(!$kcpcert_no) + alert_close('휴대폰인증이 되지 않았습니다. 휴대폰인증을 해주세요.'); + +// 본인인증 hash 체크 +$reg_hash = md5($mb_hp.$mb_name.$kcpcert_no); +if(get_session('ss_kcpcert_hash') != $reg_hash) + alert_close('휴대폰인증 정보가 올바르지 않습니다. 정상적인 방법으로 이용해 주세요.'); + +$len = strlen($mb_hp); +if($len == 10) + $s_mb_hp = preg_replace("/([0-9]{3})([0-9]{3})([0-9]{4})/", "\\1-\\2-\\3", $mb_hp); +else if($len == 11) + $s_mb_hp = preg_replace("/([0-9]{3})([0-9]{4})([0-9]{4})/", "\\1-\\2-\\3", $mb_hp); + +$sql = " select count(*) as cnt from {$g4['member_table']} where mb_hp = '$s_mb_hp' "; +$row = sql_fetch($sql); +if ($row['cnt'] > 1) + alert('동일한 핸드폰번호가 2개 이상 존재합니다.\\n\\n관리자에게 문의하여 주십시오.'); + +$sql = " select mb_id from {$g4['member_table']} where mb_name = '$mb_name' and mb_hp = '$s_mb_hp' "; +$mb = sql_fetch($sql); +if (!$mb['mb_id']) + alert('존재하지 않는 회원입니다.'); +else if (is_admin($mb['mb_id'])) + alert('관리자 아이디는 접근 불가합니다.'); + +// 난수 발생 +srand(time()); +$randval = rand(4, 6); + +$change_password = substr(md5(get_microtime()), 0, $randval); + +$sql = " update {$g4['member_table']} + set mb_password = '".sql_password($change_password)."' + where mb_id = '{$mb['mb_id']}' "; +sql_query($sql); + +$g4['title'] = '회원정보 찾기 결과'; +include_once(G4_PATH.'/head.sub.php'); +?> + +
+

회원정보 찾기 결과

+ +
+

+ 회원님의 아이디와 변경된 패스워드입니다.
+ 로그인 후 패스워드를 변경해 주세요. +

+
    +
  • 아이디
  • +
  • 패스워드
  • +
+
+
+ 확인 +
+ +
+ + \ No newline at end of file diff --git a/mobile/skin/member/kcpcert/profile.skin.php b/mobile/skin/member/kcpcert/profile.skin.php new file mode 100644 index 000000000..f26489dbf --- /dev/null +++ b/mobile/skin/member/kcpcert/profile.skin.php @@ -0,0 +1,43 @@ + + +
+

님의 프로필

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
회원권한
포인트
홈페이지
회원가입일= $mb['mb_level']) ? substr($mb['mb_datetime'],0,10) ." (".number_format($mb_reg_after)." 일)" : "알 수 없음"; ?>
최종접속일= $mb['mb_level']) ? $mb['mb_today_login'] : "알 수 없음";?>
+ +
+

인사말

+

+
+ +
+ 창닫기 +
+
diff --git a/mobile/skin/member/kcpcert/register.skin.php b/mobile/skin/member/kcpcert/register.skin.php new file mode 100644 index 000000000..f7a0a6d8c --- /dev/null +++ b/mobile/skin/member/kcpcert/register.skin.php @@ -0,0 +1,49 @@ + + +
+ +
+

회원가입약관

+ +
+ + +
+
+ +
+

개인정보수집이용안내

+ +
+ + +
+
+ +
+

회원가입약관 및 개인정보수집이용안내의 내용에 동의하셔야 회원가입 하실 수 있습니다.

+ +
+ +
+ + diff --git a/mobile/skin/member/kcpcert/register_form.skin.php b/mobile/skin/member/kcpcert/register_form.skin.php new file mode 100644 index 000000000..14123962e --- /dev/null +++ b/mobile/skin/member/kcpcert/register_form.skin.php @@ -0,0 +1,358 @@ + + + + +
+ + + + + + date("Y-m-d", G4_SERVER_TIME - ($config['cf_nick_modify'] * 86400))) { // 별명수정일이 지나지 않았다면 ?> + + + + + + + + + + + + + + + + + + +
사이트 이용정보 입력
+ > + + 영문자, 숫자, _ 만 입력 가능. 최소 3자이상 입력하세요. +
>
>
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
개인정보 입력
+ > + 공백없이 한글만 입력하세요."; } ?> +
+ + + + + 공백없이 한글,영문,숫자만 입력 가능 (한글2자, 영문4자 이상)
+ 별명을 바꾸시면 앞으로 일 이내에는 변경 할 수 없습니다. +
+
+ + ' id="reg_mb_email" class="frm_input email " size="50" maxlength="100"> + + + + + + +
" size="50" maxlength="255">
" maxlength="20" >
+ + + + + + +
+ 주소 + 필수 + + " size="2" maxlength="3" > + - + " size="2" maxlength="3" > + 주소찾기 + " size="50" > + " size="50" > +
+ + + + + + + + + + + + + + + + + += $config['cf_icon_level']) { ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
기타 개인설정
+ + + + + + + 이미지 크기는 가로 픽셀, 세로 픽셀 이하로 해주세요.
+ gif만 가능하며 용량 바이트 이하만 등록됩니다. +
+
+ > + 정보 메일을 받겠습니다. +
+ > + 핸드폰 문자메세지를 받겠습니다. +
+ + > + 다른분들이 나의 정보를 볼 수 있도록 합니다. + + 정보공개를 바꾸시면 앞으로 일 이내에는 변경이 안됩니다. + +
정보공개 + + + 정보공개는 수정후 일 이내, 까지는 변경이 안됩니다.
+ 이렇게 하는 이유는 잦은 정보공개 수정으로 인하여 쪽지를 보낸 후 받지 않는 경우를 막기 위해서 입니다. +
+
자동등록방지
+ +
+ + 취소 +
+
+ + + + diff --git a/mobile/skin/member/kcpcert/register_form_update.head.skin.php b/mobile/skin/member/kcpcert/register_form_update.head.skin.php new file mode 100644 index 000000000..e5f38b09d --- /dev/null +++ b/mobile/skin/member/kcpcert/register_form_update.head.skin.php @@ -0,0 +1,54 @@ + \ No newline at end of file diff --git a/mobile/skin/member/kcpcert/register_form_update.tail.skin.php b/mobile/skin/member/kcpcert/register_form_update.tail.skin.php new file mode 100644 index 000000000..922a1a2f6 --- /dev/null +++ b/mobile/skin/member/kcpcert/register_form_update.tail.skin.php @@ -0,0 +1,28 @@ + diff --git a/mobile/skin/member/kcpcert/register_result.skin.php b/mobile/skin/member/kcpcert/register_result.skin.php new file mode 100644 index 000000000..383393a40 --- /dev/null +++ b/mobile/skin/member/kcpcert/register_result.skin.php @@ -0,0 +1,43 @@ + + +
+ + + +

+ 님의 회원가입을 진심으로 축하합니다.
+

+ + +

+ 회원 가입 시 입력하신 이메일 주소로 인증메일이 발송되었습니다.
+ 발송된 인증메일을 확인하신 후 인증처리를 하시면 사이트를 원활하게 이용하실 수 있습니다. +

+
+ 아이디 +
+ 이메일 주소 + +
+

+ 이메일 주소를 잘못 입력하셨다면, 사이트 관리자에게 문의해주시기 바랍니다. +

+ + +

+ 회원님의 패스워드는 아무도 알 수 없는 암호화 코드로 저장되므로 안심하셔도 좋습니다.
+ 아이디, 패스워드 분실시에는 회원가입시 입력하신 패스워드 분실시 질문, 답변을 이용하여 찾을 수 있습니다. +

+ +

+ 회원 탈퇴는 언제든지 가능하며 일정기간이 지난 후, 회원님의 정보는 삭제하고 있습니다.
+ 감사합니다. +

+ + + +
diff --git a/mobile/skin/member/kcpcert/scrap.skin.php b/mobile/skin/member/kcpcert/scrap.skin.php new file mode 100644 index 000000000..711a0b875 --- /dev/null +++ b/mobile/skin/member/kcpcert/scrap.skin.php @@ -0,0 +1,37 @@ + + +
+

+ + + + + + + + + + + + + + + + + + + + + + + + "; ?> + +
스크랩 목록
번호게시판제목보관일시삭제
삭제
자료가 없습니다.
+ + + + +
diff --git a/mobile/skin/member/kcpcert/scrap_popin.skin.php b/mobile/skin/member/kcpcert/scrap_popin.skin.php new file mode 100644 index 000000000..7a95eaf66 --- /dev/null +++ b/mobile/skin/member/kcpcert/scrap_popin.skin.php @@ -0,0 +1,34 @@ + + +
+

스크랩하기

+ +
+ + + + + + + + + + + + + + + +
제목 확인 및 댓글 쓰기
제목
+ +

+ 스크랩을 하시면서 감사 혹은 격려의 댓글을 남기실 수 있습니다. +

+ +
+ +
+
+
\ No newline at end of file diff --git a/mobile/skin/member/kcpcert/zip.skin.php b/mobile/skin/member/kcpcert/zip.skin.php new file mode 100644 index 000000000..e45b96210 --- /dev/null +++ b/mobile/skin/member/kcpcert/zip.skin.php @@ -0,0 +1,62 @@ + + +
+

+ +
+ + + + + + +
+ + + +
+ + + + + + + 0) { ?> +
+
건 가나다순 정렬
+
+
    + +
  • -
  • + +
+
+
+ +

검색결과가 끝났습니다.

+ +
+ 창닫기 +
+ + + +
From dbae1a7f4aa4e6da4814e83a82e933aa127f74a6 Mon Sep 17 00:00:00 2001 From: whitedot Date: Mon, 11 Mar 2013 16:48:15 +0900 Subject: [PATCH 12/20] =?UTF-8?q?=EC=82=AC=EC=9D=B4=EB=93=9C=EB=B7=B0=20#3?= =?UTF-8?q?71=20=EC=B2=98=EB=A6=AC=20=EB=82=B4=EC=9A=A9=20=EB=B3=B4?= =?UTF-8?q?=EC=99=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/default.css | 2 +- lib/common.lib.php | 4 ++-- tail.sub.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/css/default.css b/css/default.css index 400fd1301..827a2d054 100644 --- a/css/default.css +++ b/css/default.css @@ -641,7 +641,7 @@ fieldset button {padding:0 15px;height:24px;border:0;background:#333;color:#fff; /* 사이드뷰 */ .sv_wrap {display:inline-block;position:relative;font-weight:normal} .sv_wrap .sv {z-index:1000;display:none;margin:5px 0 0;border:1px solid #283646;background:#111} -.sv_js_off .sv {display:block} +.sv_js_off {display:block} .sv_wrap .sv a {display:inline-block !important;margin:0 !important;padding:3px !important;width:94px;border-bottom:1px solid #283646;color:#fff !important} .sv_wrap a:focus, .sv_wrap a:hover, diff --git a/lib/common.lib.php b/lib/common.lib.php index 1475dff6c..4c0d5ff07 100644 --- a/lib/common.lib.php +++ b/lib/common.lib.php @@ -998,11 +998,11 @@ function get_sideview($mb_id, $name='', $email='', $homepage='') $email = get_text($email); $homepage = get_text($homepage); - $str = "\n"; + $str = "\n"; $str .= $tmp_name."\n"; if(!G4_IS_MOBILE) { - $str2 = "\n"; + $str2 = "\n"; if($mb_id) $str2 .= "쪽지보내기\n"; if($email) diff --git a/tail.sub.php b/tail.sub.php index 6360af7b9..dbf23f39b 100644 --- a/tail.sub.php +++ b/tail.sub.php @@ -21,7 +21,7 @@ $(function() { From a8eb1b657b48baf807d9a3fe3cf9944acc940c74 Mon Sep 17 00:00:00 2001 From: whitedot Date: Tue, 12 Mar 2013 09:57:24 +0900 Subject: [PATCH 15/20] =?UTF-8?q?=EA=B4=80=EB=A6=AC=EC=9E=90:=20sound=5Fon?= =?UTF-8?q?ly=20=EB=B3=B4=EC=99=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/admin.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/admin.css b/css/admin.css index a87fcd919..54ae46003 100644 --- a/css/admin.css +++ b/css/admin.css @@ -27,7 +27,7 @@ h2 {font-size:1.2em} /* 화면낭독기 사용자용 */ #hd_login_msg {position:absolute;top:0;left:0;width:1px;height:1px;overflow:hidden} -.sound_only {display:inline-block !important;margin:0 !important;padding:0 !important;width:1px !important;height:1px !important;font-size:0;line-height:0;border:0 !important;overflow:hidden !important} +.sound_only {display:inline-block !important;position:absolute;top:0;left:0;margin:0 !important;padding:0 !important;width:1px !important;height:1px !important;font-size:0;line-height:0;border:0 !important;overflow:hidden !important} /* 본문 바로가기 */ #to_content a {z-index:100000;position:absolute;top:0;left:0;font-size:0;line-height:0;overflow:hidden} #to_content a:focus, From a04f435851573b6446fb43bcd005715989f0d8a6 Mon Sep 17 00:00:00 2001 From: whitedot Date: Tue, 12 Mar 2013 10:02:18 +0900 Subject: [PATCH 16/20] =?UTF-8?q?=EC=82=AC=EC=9A=A9=EC=9E=90:=20#374=20,?= =?UTF-8?q?=20#281=20=EC=97=90=20=EB=94=B0=EB=A5=B8=20select=5Fchange()=20?= =?UTF-8?q?=EB=AC=B4=EB=A0=A5=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/new.php | 2 +- skin/new/basic/new.skin.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bbs/new.php b/bbs/new.php index d2b2c3978..723313487 100644 --- a/bbs/new.php +++ b/bbs/new.php @@ -33,7 +33,7 @@ $total_page = ceil($total_count / $rows); // 전체 페이지 계산 if (!$page) $page = 1; // 페이지가 없으면 첫 페이지 (1 페이지) $from_record = ($page - 1) * $rows; // 시작 열을 구함 -$group_select = '