로그인시에 사용자 아이디를 소문자로 변경

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4067 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-04-04 01:54:44 +00:00
parent ea550c627e
commit 33ba53114e

View file

@ -1251,6 +1251,8 @@
* @brief 로그인 시킴
**/
function doLogin($user_id, $password = '', $keep_signed = false) {
$user_id = strtolower($user_id);
// 로그인 이전에 trigger 호출 (before)
$trigger_obj->user_id = $user_id;
$trigger_obj->password = $password;