#375 게시판 정렬 기준 컬럼 변경 regdate -> list_order

- 게시판모듈 설정에서 문서번호 정렬(list_order)을 등록일 정렬로 변경(문서번호 표기는 삭제)
- default 스킨에서 sort_index의 regdate, last_update 값을 list_order, update_order로 변경
This commit is contained in:
largeden 2014-01-28 20:08:20 +09:00
parent 6a1614f396
commit dc307cb7d6
3 changed files with 5 additions and 5 deletions

View file

@ -55,7 +55,7 @@ class boardAdminView extends board {
// install order (sorting) options
foreach($this->order_target as $key) $order_target[$key] = Context::getLang($key);
$order_target['list_order'] = Context::getLang('document_srl');
$order_target['list_order'] = Context::getLang('regdate');
$order_target['update_order'] = Context::getLang('last_update');
Context::set('order_target', $order_target);
}