Skip to content
This repository has been archived by the owner on Jun 10, 2020. It is now read-only.

Commit

Permalink
Merge pull request #15 from ildelux/master
Browse files Browse the repository at this point in the history
- fixed some warnings and notices
  • Loading branch information
ildelux authored Jan 11, 2019
2 parents 9d91a3f + 241345d commit 498ef25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/code/community/Contactlab/Hub/Model/Observer.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public function traceCustomerLogin($observer)
$cookie = json_decode(Mage::getSingleton('core/cookie')->get('_ch'), true);
if ($cookie)
{
if(array_key_exists($cookie, 'customerId'))
if(array_key_exists('customerId', $cookie))
{
$this->_helper()->deleteTrackingCookie();
}
Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Contactlab/Hub/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<config>
<modules>
<Contactlab_Hub>
<version>2.3.3</version>
<version>2.3.4</version>
</Contactlab_Hub>
</modules>
<global>
Expand Down

0 comments on commit 498ef25

Please sign in to comment.