라이믹스에는 위와 같이 글,댓글을 신고할때 신고 이유를 선택 또는 직접 작성하여 제출할 수 있는 dispDocumentDeclare, dispCommentDeclare 액션이 추가되었습니다. 이 기능을 사용하여 신고를 할 수 있도록 신고버튼에 적용된 링크를 변경해야 합니다. 물론 최근에 배포된 스킨의 경우는 이미 변경이 되었겠지만 오래된 스킨의 경우는 직접 변경해주어야 합니다.
우선 문서신고시
<a cond="$mi->declare" class="blamed declare bd_login" href="#" onclick="doCallModuleAction('document','procDocumentDeclare','{$oDocument->document_srl}');return false;"|cond="$is_logged">
이런식으로 처리가 되어 있는 경우가 있을텐데..
<a cond="$mi->declare" class="blamed declare bd_login" onclick="window.open('{getUrl('', 'act', 'dispDocumentDeclare', 'target_srl', $document_srl)}','win','popopen(this.href); return false;')"|cond="$is_logged">
이런식으로 변경을 해주거나...
<a cond="$mi->declare" class="blamed declare bd_login" href="{getUrl('act','dispDocumentDeclare','target_srl',$document_srl)}" onclick="popopen(this.href, 'popup'); return false;">
이렇게 변경해서 사용할 수 있습니다.
댓글신고도 마찬가지로
<a href="{getUrl('act','dispCommentDeclare','target_srl',$comment->comment_srl)}" onclick="popopen(this.href, 'popup'); return false;">
비슷하게 변경하여 사용하면 됩니다.