From 12ad5e9cb5eb6a2ca8e6257c4b5f8bb80637d62a Mon Sep 17 00:00:00 2001 From: thisgun Date: Fri, 8 Jun 2018 11:18:28 +0900 Subject: [PATCH 1/4] =?UTF-8?q?=EB=B0=A9=EB=AC=B8=EC=9E=90=20=EC=8A=A4?= =?UTF-8?q?=ED=82=A8=20css=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- skin/connect/basic/style.css | 2 +- theme/basic/skin/connect/basic/style.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/skin/connect/basic/style.css b/skin/connect/basic/style.css index 919ed6ac1..c8de8339b 100644 --- a/skin/connect/basic/style.css +++ b/skin/connect/basic/style.css @@ -7,7 +7,7 @@ #current_connect li.box_clear{clear:both} #current_connect li .inner{position:relative;border:1px solid #d8d8d8;background:#fff;margin-bottom:10px;text-align:center} #current_connect .crt_name {margin:20px 20px 15px;display:block;min-height:88px} -#current_connect .crt_name img{ border-radius:50%;margin: 0 0 5px} +#current_connect .crt_name img{ border-radius:50%;margin: 0 0 5px;max-width:100%;height:auto} #current_connect .crt_lct{display:block;text-align:center;border-top:1px solid #ddd;padding:10px 5px;line-height:1.4em} #current_connect .crt_lct a{color:#3ca1ff} #current_connect .crt_num{position:absolute;top:10px;left:10px;color:#777;font-weight:bold} diff --git a/theme/basic/skin/connect/basic/style.css b/theme/basic/skin/connect/basic/style.css index a64258eb1..a13cd43c5 100644 --- a/theme/basic/skin/connect/basic/style.css +++ b/theme/basic/skin/connect/basic/style.css @@ -7,7 +7,7 @@ #current_connect li.box_clear{clear:both} #current_connect li .inner{position:relative;border:1px solid #d8d8d8;background:#fff;margin-bottom:10px;text-align:center} #current_connect .crt_name {margin:20px 20px 15px;display:block;min-height:88px} -#current_connect .crt_name img{ border-radius:50%;margin: 0 0 5px} +#current_connect .crt_name img{ border-radius:50%;margin: 0 0 5px;max-width:100%;height:auto} #current_connect .crt_lct{display:block;text-align:center;border-top:1px solid #ddd;padding:10px 5px;line-height:1.4em} #current_connect .crt_lct a{color:#3ca1ff} #current_connect .crt_num{position:absolute;top:10px;left:10px;color:#777;font-weight:bold} From c6f28c120c3f681b5e118c4c618e8f0aa1445446 Mon Sep 17 00:00:00 2001 From: thisgun Date: Tue, 3 Jul 2018 15:29:06 +0900 Subject: [PATCH 2/4] =?UTF-8?q?=EC=B7=A8=EC=95=BD=EC=A0=90=20[KVE-18-339]?= =?UTF-8?q?=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/faqlist.php | 8 +++++++- adm/popular_list.php | 2 +- skin/member/basic/register_form.skin.php | 2 +- theme/basic/skin/member/basic/register_form.skin.php | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/adm/faqlist.php b/adm/faqlist.php index 9a75a64a3..acfb094e9 100644 --- a/adm/faqlist.php +++ b/adm/faqlist.php @@ -5,7 +5,13 @@ include_once('./_common.php'); auth_check($auth[$sub_menu], "r"); $g5['title'] = 'FAQ 상세관리'; -if ($fm_subject) $g5['title'] .= ' : '.$fm_subject; +if ($fm_subject){ + $fm_subject = clean_xss_tags(strip_tags($fm_subject)); + $g5['title'] .= ' : '.$fm_subject; +} + +$fm_id = (int) $fm_id; + include_once (G5_ADMIN_PATH.'/admin.head.php'); $sql = " select * from {$g5['faq_master_table']} where fm_id = '$fm_id' "; diff --git a/adm/popular_list.php b/adm/popular_list.php index f4d0a62b4..80f200be2 100644 --- a/adm/popular_list.php +++ b/adm/popular_list.php @@ -7,7 +7,7 @@ auth_check($auth[$sub_menu], 'r'); // 체크된 자료 삭제 if (isset($_POST['chk']) && is_array($_POST['chk'])) { for ($i=0; $i', - 회원아이콘 + 회원이미지 diff --git a/theme/basic/skin/member/basic/register_form.skin.php b/theme/basic/skin/member/basic/register_form.skin.php index c69447e72..5ecb1c8e0 100644 --- a/theme/basic/skin/member/basic/register_form.skin.php +++ b/theme/basic/skin/member/basic/register_form.skin.php @@ -200,7 +200,7 @@ add_stylesheet('', - 회원아이콘 + 회원이미지 From 244a496490f464be864ee7bfef61b4dc68a80011 Mon Sep 17 00:00:00 2001 From: thisgun Date: Tue, 3 Jul 2018 15:51:43 +0900 Subject: [PATCH 3/4] =?UTF-8?q?=ED=9A=8C=EC=9B=90=20=EC=82=AC=EC=9D=B4?= =?UTF-8?q?=EB=93=9C=EB=B7=B0=20=EC=A0=84=EC=B2=B4=EA=B2=8C=EC=8B=9C?= =?UTF-8?q?=EB=AC=BC=20=ED=81=B4=EB=A6=AD=EC=8B=9C=20=EC=83=88=EC=B0=BD?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/common.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/js/common.js b/js/common.js index d69064d4f..7c4c8aa2e 100644 --- a/js/common.js +++ b/js/common.js @@ -350,7 +350,8 @@ var check_goto_new = function(href, event) { if( !(typeof g5_is_mobile != "undefined" && g5_is_mobile) ){ if (window.opener && window.opener.document && window.opener.document.getElementById) { event.preventDefault ? event.preventDefault() : (event.returnValue = false); - window.opener.document.location.href = href; + window.open(href); + //window.opener.document.location.href = href; } } } @@ -359,7 +360,7 @@ var check_goto_new = function(href, event) { * 메일 창 **/ var win_email = function(href) { - var new_win = window.open(href, 'win_email', 'left=100,top=100,width=600,height=580,scrollbars=0'); + var new_win = window.open(href, 'win_email', 'left=100,top=100,width=600,height=580,scrollbars=1'); new_win.focus(); } From 733bca04c82a65e7d4dcf410abc805f228bcb48b Mon Sep 17 00:00:00 2001 From: thisgun Date: Tue, 3 Jul 2018 15:57:21 +0900 Subject: [PATCH 4/4] =?UTF-8?q?5.3.1.5=20=EB=B2=84=EC=A0=84=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.php b/config.php index 73faf8c29..7f7007615 100644 --- a/config.php +++ b/config.php @@ -5,7 +5,7 @@ ********************/ define('G5_VERSION', '그누보드5'); -define('G5_GNUBOARD_VER', '5.3.1.4'); +define('G5_GNUBOARD_VER', '5.3.1.5'); // 이 상수가 정의되지 않으면 각각의 개별 페이지는 별도로 실행될 수 없음 define('_GNUBOARD_', true);