From 6fa0f0e704a324153f48e13b27a9639cd1120b33 Mon Sep 17 00:00:00 2001 From: thisgun Date: Wed, 25 Jan 2023 11:06:07 +0900 Subject: [PATCH] =?UTF-8?q?=EC=A0=95=EB=A0=AC=20=EA=B8=B0=EB=8A=A5?= =?UTF-8?q?=EC=97=90=20=EC=A7=A7=EC=9D=80=20=EC=A3=BC=EC=86=8C=20=EC=A0=81?= =?UTF-8?q?=EC=9A=A9=20=EC=98=A4=EB=A5=98=EB=A5=BC=20=EB=8B=A4=EC=8B=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/common.lib.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/common.lib.php b/lib/common.lib.php index 257515e5a..19c15393b 100644 --- a/lib/common.lib.php +++ b/lib/common.lib.php @@ -865,8 +865,10 @@ function subject_sort_link($col, $query_string='', $flag='asc') $arr_query[] = 'page='.$page; $qstr = implode("&", $arr_query); - $url = G5_HTTP_BBS_URL . "/board.php?{$qstr}"; - return ''; + parse_str(html_entity_decode($qstr), $qstr_array); + $url = short_url_clean(get_params_merge_url($qstr_array)); + + return ''; }