Skip to content

Commit

Permalink
컬럼 정렬 함수에 sca 변수 추가 (sir ko님 제안)
Browse files Browse the repository at this point in the history
  • Loading branch information
chicpro committed Oct 20, 2016
1 parent 6dbfa73 commit 50c8207
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/common.lib.php
Expand Up @@ -712,7 +712,7 @@ function get_member($mb_id, $fields='*')
// 제목별로 컬럼 정렬하는 QUERY STRING
function subject_sort_link($col, $query_string='', $flag='asc')
{
global $sst, $sod, $sfl, $stx, $page;
global $sst, $sod, $sfl, $stx, $page, $sca;

$q1 = "sst=$col";
if ($flag == 'asc')
Expand Down Expand Up @@ -744,6 +744,7 @@ function subject_sort_link($col, $query_string='', $flag='asc')
$arr_query[] = $q2;
$arr_query[] = 'sfl='.$sfl;
$arr_query[] = 'stx='.$stx;
$arr_query[] = 'sca='.$sca;
$arr_query[] = 'page='.$page;
$qstr = implode("&", $arr_query);

Expand Down

0 comments on commit 50c8207

Please sign in to comment.