diff --git a/plugin/social/Hybrid/Providers/Naver.php b/plugin/social/Hybrid/Providers/Naver.php index 4927276f8..b0302f2b8 100644 --- a/plugin/social/Hybrid/Providers/Naver.php +++ b/plugin/social/Hybrid/Providers/Naver.php @@ -131,10 +131,10 @@ class Hybrid_Providers_Naver extends Hybrid_Provider_Model_OAuth2 if( array_key_exists('birthday',$data) ){ $tmp = explode("-",$data['birthday']); if( isset($tmp[0]) ){ - $this->user->profile->birthDay = $tmp[0]; + $this->user->profile->birthMonth = $tmp[0]; } if( isset($tmp[1]) ){ - $this->user->profile->birthMonth = $tmp[1]; + $this->user->profile->birthDay = $tmp[1]; } } $this->user->profile->email = (array_key_exists('email',$data))?$data['email']:"";