mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
- 신고된 문서 열람 화면에서 작성일순 정렬 옵션 추가 (최근 신고순 옵션은 이미 있음) - 신고된 댓글 열람 화면에서 작성일순, 최근 신고순 정렬 옵션 추가 - 신고된 문서와 댓글 열람 화면에서 일관성있는 표시를 위해 컬럼 순서를 일부 조정
19 lines
774 B
XML
19 lines
774 B
XML
<query id="getDeclaredList" action="select">
|
|
<tables>
|
|
<table name="comments" alias="comments" />
|
|
<table name="comment_declared" alias="comment_declared" />
|
|
</tables>
|
|
<columns>
|
|
<column name="*" />
|
|
</columns>
|
|
<conditions>
|
|
<condition operation="equal" column="comments.comment_srl" default="comment_declared.comment_srl" />
|
|
<condition operation="more" column="comment_declared.declared_count" default="1" pipe="and" />
|
|
</conditions>
|
|
<navigation>
|
|
<index var="sort_index" default="comment_declared.declared_count" order="order_type" />
|
|
<list_count var="list_count" default="20" />
|
|
<page_count var="page_count" default="10" />
|
|
<page var="page" default="1" />
|
|
</navigation>
|
|
</query>
|