게시물 작성시 알림 체크를 하는 것이 귀찮을 때

알림 옵션을 기본으로 체크되어 있도록 하려면

modules\document
document.item.php 파일의 127번 줄을 다음처럼 변경하면 됩니다.

[수정전]
        function useNotify() {
            return $this->get('notify_message')=='Y' ? true : false;
        }

[수정후]
        function useNotify() {
            
return $this->get('notify_message')=='Y' || !$this->isExists() ? true : false;
        }


이미 등록된 글의 알림 옵션을 변경하려면 아래처럼 SQL 쿼리를 하면 됩니다. phpMyAdmin이나 SQL 콘솔에서;;;

update xe_documents set notify_message='Y'
where notify_message like 'N' and member_srl='1234 회원 번호'



모든 회원을 대상으로 하려면 and member_srl='회원번호'을 삭제하면 되겠죠~