회원 가입시 닉네임 길이를 mb_strlen으로 해야하는 점 수정
아이디를 대소문자 다 받던 것 수정(소문자로 자동 변경)
This commit is contained in:
@@ -36,7 +36,7 @@ if($expires < $nowDate && (!$refresh_token || ($refresh_token_expires < $nowDate
|
||||
]);
|
||||
}
|
||||
$secret_agree =util::array_get($_POST['secret_agree']);
|
||||
$username = util::array_get($_POST['username']);
|
||||
$username = mb_strtolower(util::array_get($_POST['username']), 'utf-8');
|
||||
$password = util::array_get($_POST['password']);
|
||||
$nickname = util::array_get($_POST['nickname']);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user