게시판 정렬 기능에 짧은주소 적용

This commit is contained in:
thisgun
2022-12-19 11:18:28 +09:00
parent 25091a201b
commit 4e0cd0d911

View File

@ -863,7 +863,8 @@ function subject_sort_link($col, $query_string='', $flag='asc')
$arr_query[] = 'page='.$page;
$qstr = implode("&", $arr_query);
return "<a href=\"{$_SERVER['SCRIPT_NAME']}?{$qstr}\">";
$url = G5_HTTP_BBS_URL . "/board.php?{$qstr}";
return '<a href="'.short_url_clean($url).'">';
}