종료상태인 항목을 제외함
This commit is contained in:
@ -144,6 +144,11 @@ $rb_skin['md_auto_is'] 자동롤링 여부(1,0)
|
|||||||
return $a['_sort'] <=> $b['_sort'];
|
return $a['_sort'] <=> $b['_sort'];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// 종료 상태인 항목 제외
|
||||||
|
$list = array_filter($list, function ($item) {
|
||||||
|
return $item['_status'] !== '종료';
|
||||||
|
});
|
||||||
|
|
||||||
// 정렬 후 list_count 재설정
|
// 정렬 후 list_count 재설정
|
||||||
$list_count = count($list);
|
$list_count = count($list);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user