회원 가입시 닉네임 중복으로 입력할 수 있게 변경하기
그누보드 기본 설정은 회원 가입할 때 닉네임은 중복해서 입력할 수 없게 되어 있습니다.
필요에 따라 중복으로도 입력 가능하게 하는 방법입니다.
1. bbs/ajax.mb_nick.php 파일 수정
아래 코드 주석 처리.
// if ($msg = exist_mb_nick($mb_nick, $mb_id)) die($msg);
2. bbs/register_form_update.php 파일 수정
아래 코드를 찾은 후 주석 처리.
// if ($msg = exist_mb_nick($mb_nick, $mb_id)) alert($msg, "", true, true);
* 참고 사항
닉네임 중복 체크 함수는 lib/register.lib.php 파일에 있습니다.
function exist_mb_nick($reg_mb_nick, $reg_mb_id)
{
global $g5;
$row = sql_fetch(" select count(*) as cnt from {$g5['member_table']} where mb_nick = '$reg_mb_nick' and mb_id <> '$reg_mb_id' ");
if ($row['cnt'])
return "이미 존재하는 닉네임입니다.";
else
return "";
}