#520 오픈아이디 생년월일 포맷 문제 해결

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4452 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
araste 2008-08-22 02:54:42 +00:00
parent 6cff17d916
commit 81f676dc2c

View file

@ -97,7 +97,7 @@
$args->email_address = Context::get('openid_sreg_email');
$args->user_name = Context::get('openid_sreg_fullname');
if(!$args->user_name) list($args->user_name) = explode('@', $args->email_address);
$args->birthday = Context::get('openid_sreg_dob');
$args->birthday = str_replace('-','',Context::get('openid_sreg_dob'));
// 자체 인증 시도
$output = $this->doLogin($args->user_id);