묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
2005.03.12 11:10
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
$lang->msg_exists_nick_name = \
그리고 카테고리는
관리자 모드-->등록된 그룹-->게시판 관리-->카테고리 관리 해서 수정 합니다^^
----------------------------------------------------------------------------
* script/script_zbLayer.php 파일을 열어보시기 바랍니다.
41~44번줄을 보시면 다음과 같은 내용이 있습니다.
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(member_no) {
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;
}
}
}