Social login 에러
Social.php : 779 line에
$socialinfo = '' ==> 로 되어 있는데,
$socialinfo = array() 로 고쳐야 하지 않나 싶습니다.
=============
// 비회원이 소셜로그인을 처음 진행하는 상황
if ($this->cbconfig->item('use_register_block')) {
alert_close('현재 이 사이트는 회원가입이 금지되어 있습니다.');
}
$socialwhere = array(
'soc_type' => $social_type,
'soc_account_id' => $social_id,
);
$socialinfo = array();
$socialdata = $this->Social_model->get('', '', $socialwhere);
if ($socialdata) {
foreach ($socialdata as $skey => $sval) {
$socialinfo[$sval['soc_key']] = $sval['soc_value'];
}
}