From 6e24064711b5e92f479e6fd573d13f14478bec39 Mon Sep 17 00:00:00 2001 From: chicpro Date: Fri, 2 Oct 2015 11:08:47 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=EC=9E=90=EA=B8=B0=EC=86=8C=EA=B0=9C=20?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80=20=EB=94=B0=EC=98=B4=ED=91=9C?= =?UTF-8?q?=EB=A1=9C=20=EC=9D=B8=ED=95=9C=20=ED=8E=98=EC=9D=B4=EC=A7=80=20?= =?UTF-8?q?=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/profile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bbs/profile.php b/bbs/profile.php index 30e172b8c..c9f53b8cb 100644 --- a/bbs/profile.php +++ b/bbs/profile.php @@ -24,7 +24,7 @@ $sql = " select (TO_DAYS('".G5_TIME_YMDHIS."') - TO_DAYS('{$mb['mb_datetime']}') $row = sql_fetch($sql); $mb_reg_after = $row['days']; -$mb_homepage = set_http(clean_xss_tags($mb['mb_homepage'])); +$mb_homepage = set_http(get_text(clean_xss_tags($mb['mb_homepage']))); $mb_profile = $mb['mb_profile'] ? conv_content($mb['mb_profile'],0) : '소개 내용이 없습니다.'; include_once($member_skin_path.'/profile.skin.php'); From b14facc9dc734b2b354d2b84a4455f3d6c6a1cd2 Mon Sep 17 00:00:00 2001 From: chicpro Date: Fri, 2 Oct 2015 11:29:29 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=EC=A3=BC=EC=86=8C=20=EB=94=B0=EC=98=B4?= =?UTF-8?q?=ED=91=9C=20=EC=B6=9C=EB=A0=A5=20=EA=B4=80=EB=A0=A8=20=EC=BD=94?= =?UTF-8?q?=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/common.lib.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/common.lib.php b/lib/common.lib.php index 749672e5f..8d39a3bb1 100644 --- a/lib/common.lib.php +++ b/lib/common.lib.php @@ -2635,9 +2635,9 @@ function module_exec_check($exe, $type) // 주소출력 function print_address($addr1, $addr2, $addr3, $addr4) { - $address = trim($addr1); - $addr2 = trim($addr2); - $addr3 = trim($addr3); + $address = get_text(trim($addr1)); + $addr2 = get_text(trim($addr2)); + $addr3 = get_text(trim($addr3)); if($addr4 == 'N') { if($addr2)