From 8ed56ec2932ef8dc025c59b3c5e8eae798a833d6 Mon Sep 17 00:00:00 2001 From: kagla Date: Wed, 28 Jul 2021 11:19:45 +0900 Subject: [PATCH] =?UTF-8?q?=EB=84=A4=EC=9D=B4=EB=B2=84=20=EC=86=8C?= =?UTF-8?q?=EC=85=9C=ED=9A=8C=EC=9B=90=EA=B0=80=EC=9E=85=EC=8B=9C=20?= =?UTF-8?q?=EC=9B=94/=EC=9D=BC=20=EC=B2=98=EB=A6=AC=EA=B0=80=20=EB=B0=98?= =?UTF-8?q?=EB=8C=80=EB=A1=9C=20=EB=90=98=EB=8A=94=20=ED=98=84=EC=83=81=20?= =?UTF-8?q?=EC=88=98=EC=A0=95=20(arrtres=EB=8B=98,210727)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugin/social/Hybrid/Providers/Naver.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/social/Hybrid/Providers/Naver.php b/plugin/social/Hybrid/Providers/Naver.php index 4927276f8e..b0302f2b82 100644 --- a/plugin/social/Hybrid/Providers/Naver.php +++ b/plugin/social/Hybrid/Providers/Naver.php @@ -131,10 +131,10 @@ function getUserProfile() 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']:"";