제로보드 메일주소 관리자만 볼수 있게 하기
페이지 정보
본문
게시판에서 글작성시 메일주소를 입력해도 그것을 관리자만 볼수 있게 하는 방법 (내용을 일반회원도 보기 가능)
제로보드 폴더안에 script폴더 > script_zbLayer.php 파일 소스중
if(mail) {
printMain = printMain + "<tr onMouseOver=this.style.backgroundColor='#bbbbbb' onMouseOut=this.style.backgroundColor='' onMousedown=window.open('open_window.php?mode=m&str="+mail+"','ZBremote','width=1,height=1,left=1,top=1');><td style=font-family:굴림;font-size:9pt height=18 nowrap> <img src=images/n_mail.gif border=0 align=absmiddle> 메일 보내기 </td></tr>";
printHeight = printHeight + 16;
}
위에 부분을 아래와 같이 바꾸세요..
if(isAdmin) { // 추가
if(mail) {
printMain = printMain + "<tr onMouseOver=this.style.backgroundColor='#bbbbbb' onMouseOut=this.style.backgroundColor='' onMousedown=window.open('open_window.php?mode=m&str="+mail+"','ZBremote','width=1,height=1,left=1,top=1');><td style=font-family:굴림;font-size:9pt height=18 nowrap> <img src=images/n_mail.gif border=0 align=absmiddle> 메일 보내기 </td></tr>";
printHeight = printHeight + 16;
}
} // 추가
제로보드 폴더안에 script폴더 > script_zbLayer.php 파일 소스중
if(mail) {
printMain = printMain + "<tr onMouseOver=this.style.backgroundColor='#bbbbbb' onMouseOut=this.style.backgroundColor='' onMousedown=window.open('open_window.php?mode=m&str="+mail+"','ZBremote','width=1,height=1,left=1,top=1');><td style=font-family:굴림;font-size:9pt height=18 nowrap> <img src=images/n_mail.gif border=0 align=absmiddle> 메일 보내기 </td></tr>";
printHeight = printHeight + 16;
}
위에 부분을 아래와 같이 바꾸세요..
if(isAdmin) { // 추가
if(mail) {
printMain = printMain + "<tr onMouseOver=this.style.backgroundColor='#bbbbbb' onMouseOut=this.style.backgroundColor='' onMousedown=window.open('open_window.php?mode=m&str="+mail+"','ZBremote','width=1,height=1,left=1,top=1');><td style=font-family:굴림;font-size:9pt height=18 nowrap> <img src=images/n_mail.gif border=0 align=absmiddle> 메일 보내기 </td></tr>";
printHeight = printHeight + 16;
}
} // 추가
댓글목록
등록된 댓글이 없습니다.