글 출처 : http://sejin7940.co.kr/index.php?mid=xe_tips&document_srl=113555
==========================================
글등록시 포인트 차감되도록 설정한 경우,
게시판 별로 개별설정으로 포인트 차감을 처리했을 경우에는, 적용이 되지만
개별설정이 아닌, 전체 설정 기준으로만 사용할 경우는 적용이 안 되는 버그가 있다
이를 해결하는 방법은..
modules/board/board.view.php 에서
function dispBoardWrite() 함수에서
if($pointForInsert < 0)
위에다가 추가
if(strlen($pointForInsert) == 0 && !is_int($pointForInsert)) {
$point_total_config = $oModuleModel->getModuleConfig('point');
$pointForInsert = $point_total_config->insert_document;
}
태그목록
첨부파일 목록