8
0
Bifurcation 0

avoid messages, if oUser is not an oxuser instance

Cette révision appartient à :
Daniel Seifert 2013-04-24 10:42:11 +00:00
Parent e3b5ead1de
révision 3ef5c07478
1 fichiers modifiés avec 1 ajouts et 1 suppressions

Voir le fichier

@ -31,7 +31,7 @@ class d3_order_googleanalytics extends d3_order_googleanalytics_parent {
protected function _d3SetIsNewCustomer()
{
$oUser = $this->getUser();
$isNewCustomer = isset($oUser) ? $oUser->inGroup('oxidnotyetordered') : 0 ;
$isNewCustomer = (isset($oUser) && $oUser instanceof oxuser) ? $oUser->inGroup('oxidnotyetordered') : 0 ;
oxRegistry::getSession()->setVariable('iD3GANewCustomer', (int)$isNewCustomer);
}