웹마스터 팁

xe/modules/board/board.controller.php

98 line..


$this->add('document_srl', $output->get('document_srl')); 을 아래와같이 변경..


     /*
     게시판이이디는 대소문자를 구별하므로 정확히 적어주세요.
     아이디 추가는 | 으로 구분됩니다.
     예를들어 (게시판1|게시판2|게시판3)
     */
     if(!preg_match('/(게시판1|게시판2)/', Context::get('mid'))) {
   $this->add('document_srl', $output->get('document_srl'));
     }



위에서 (게시판1|게시판2) 부분에 목록으로 이동할 게시판 아이디를 적어주시면됩니다.