人人商城v2獲取頭像出錯多出132132

/addons/ewei_shopv2/core/model/memeber.php

v2:

	if (!(empty($info))) 
	{
		if (!(strexists($info['avatar'], 'http://')) && !(strexists($info['avatar'], 'https://'))) 
		{
			$info['avatar'] = tomedia($info['avatar']);
		}
		if ($_W['ishttps']) 
		{
			$info['avatar'] = str_replace('http://', 'https://', $info['avatar']);
		}
		
		$info = $this->updateCredits($info);
	}

v3:

	if (!(empty($info))) 
	{
		if (!(strexists($info['avatar'], 'http://')) && !(strexists($info['avatar'], 'https://'))) 
		{
			$info['avatar'] = tomedia($info['avatar']);
		}
		if ($_W['ishttps']) 
		{
			$info['avatar'] = str_replace('http://', 'https://', $info['avatar']);
		}
		
		
		if(strpos($info['avatar'],'132132')){
			$upgrade2=array();
			$upgrade2['avatar'] = str_replace('132132', '132', $info['avatar']);
			pdo_update('ewei_shop_member', $upgrade2, array('id' => $info['id']));
		}
		
		$info = $this->updateCredits($info);
	}

獲取信息時去掉132132後的132

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章