알림 옵션 기본 체크

by 갈매빛 / 崠駐 posted Apr 01, 2010
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
게시물 작성시 알림 체크를 하는 것이 귀찮을 때

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

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='회원번호'을 삭제하면 되겠죠~

Articles

3 4 5 6 7 8 9 10 11 12