mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
2047 보완 파일 리스트 정렬 순서를 항상 desc에서 처음 시작하도록 개선
This commit is contained in:
parent
7f51e823cd
commit
a29e310b76
1 changed files with 3 additions and 3 deletions
|
|
@ -24,7 +24,7 @@ xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
|
|||
<tr>
|
||||
<th scope="col">{$lang->file}</th>
|
||||
<th scope="col" class="nowr">
|
||||
<a href="{getUrl('', 'module', 'admin', 'act', 'dispFileAdminList', 'sort_index', 'file_size', 'order_type', ($order_type == 'asc') ? 'desc' : 'asc')}">
|
||||
<a href="{getUrl('', 'module', 'admin', 'act', 'dispFileAdminList', 'sort_index', 'file_size', 'order_type', ($order_type == 'desc' && $sort_index == 'file_size') ? 'asc' : 'desc')}">
|
||||
{$lang->file_size}
|
||||
<block cond="$sort_index == 'file_size'">
|
||||
<em cond="$order_type=='asc'">▲</em><em cond="$order_type != 'asc'">▼</em>
|
||||
|
|
@ -32,7 +32,7 @@ xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
|
|||
</a>
|
||||
</th>
|
||||
<th scope="col" class="nowr">
|
||||
<a href="{getUrl('', 'module', 'admin', 'act', 'dispFileAdminList', 'sort_index', 'download_count', 'order_type', ($order_type == 'asc') ? 'desc' : 'asc')}">
|
||||
<a href="{getUrl('', 'module', 'admin', 'act', 'dispFileAdminList', 'sort_index', 'download_count', 'order_type', ($order_type == 'desc' && $sort_index == 'download_count') ? 'asc' : 'desc')}">
|
||||
{$lang->cmd_download}
|
||||
<block cond="$sort_index == 'download_count'">
|
||||
<em cond="$order_type=='asc'">▲</em><em cond="$order_type != 'asc'">▼</em>
|
||||
|
|
@ -41,7 +41,7 @@ xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
|
|||
</th>
|
||||
<th scope="col" class="nowr">{$lang->author}</th>
|
||||
<th scope="col" class="nowr">
|
||||
<a href="{getUrl('', 'module', 'admin', 'act', 'dispFileAdminList', 'sort_index', 'regdate', 'order_type', ($order_type == 'asc') ? 'desc' : 'asc')}">
|
||||
<a href="{getUrl('', 'module', 'admin', 'act', 'dispFileAdminList', 'sort_index', 'regdate', 'order_type', ($order_type == 'desc' && $sort_index == 'regdate') ? 'asc' : 'desc')}">
|
||||
{$lang->date}
|
||||
<block cond="$sort_index == 'regdate'">
|
||||
<em cond="$order_type=='asc'">▲</em><em cond="$order_type != 'asc'">▼</em>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue