회원 아이디의 경우 무조건 소문자로 강제로 변환하도록 수정

git-svn-id: http://xe-core.googlecode.com/svn/trunk@1955 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-07-19 07:44:51 +00:00
parent 0a1ee4c544
commit fe4be0f212

View file

@ -866,6 +866,9 @@
// 임시 제한 일자가 있을 경우 제한 일자에 내용 추가
if($config->limit_day) $args->limit_date = date("YmdHis", time()+$config->limit_day*60*60*24);
// 입력할 사용자의 아이디를 소문자로 변경
$args->user_id = strtolower($args->user_id);
// 필수 변수들의 조절
if($args->allow_mailing!='Y') $args->allow_mailing = 'N';
if(!in_array($args->allow_message, array('Y','N','F'))) $args->allow_message= 'Y';