Fixed php5.3 compatibility. #3181
This commit is contained in:
parent
777604f5dc
commit
5ad648a394
@ -293,7 +293,8 @@ class d3_oxcmp_utils_googleanalytics extends d3_oxcmp_utils_googleanalytics_pare
|
|||||||
public function d3GetGTSLang()
|
public function d3GetGTSLang()
|
||||||
{
|
{
|
||||||
$aHomeCountries = oxRegistry::getConfig()->getConfigParam('aHomeCountry');
|
$aHomeCountries = oxRegistry::getConfig()->getConfigParam('aHomeCountry');
|
||||||
$sHomeCountryId = $aHomeCountries[array_keys($aHomeCountries)[0]];
|
$aKeys = array_keys($aHomeCountries);
|
||||||
|
$sHomeCountryId = $aHomeCountries[current($aKeys)];
|
||||||
/** @var oxcountry $oCountry */
|
/** @var oxcountry $oCountry */
|
||||||
$oCountry = oxNew('oxcountry');
|
$oCountry = oxNew('oxcountry');
|
||||||
$oCountry->load($sHomeCountryId);
|
$oCountry->load($sHomeCountryId);
|
||||||
@ -326,7 +327,6 @@ class d3_oxcmp_utils_googleanalytics extends d3_oxcmp_utils_googleanalytics_pare
|
|||||||
return array('aArtIdList' => $aArticleIds);
|
return array('aArtIdList' => $aArticleIds);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $aArticleIds
|
* @param array $aArticleIds
|
||||||
*
|
*
|
||||||
@ -335,7 +335,9 @@ class d3_oxcmp_utils_googleanalytics extends d3_oxcmp_utils_googleanalytics_pare
|
|||||||
public function d3GATSGetProdIdList($aArticleIds)
|
public function d3GATSGetProdIdList($aArticleIds)
|
||||||
{
|
{
|
||||||
if (count($aArticleIds)) {
|
if (count($aArticleIds)) {
|
||||||
return $aArticleIds[array_keys($aArticleIds)[0]];
|
$aKeys = array_keys($aArticleIds);
|
||||||
|
|
||||||
|
return $aArticleIds[current($aKeys)];
|
||||||
} else {
|
} else {
|
||||||
return "not_set";
|
return "not_set";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user