Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2013-10-25 07:27:18 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-25 07:27:18 +0400
commit2d46ce777df9e862296ce0fc3e33770390abba4b (patch)
tree061ed3b03953a27708ad1f0b9c40ef74e0be88e1 /libs
parent87e938344233b997855af9c438f7b355e3784d34 (diff)
parent4ab8a6190ee6cb4d33cf99fc579be86606cc07fa (diff)
submodule sync
Diffstat (limited to 'libs')
-rw-r--r--libs/PiwikTracker/PiwikTracker.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/PiwikTracker/PiwikTracker.php b/libs/PiwikTracker/PiwikTracker.php
index 8dbee694b3..d9bf125d10 100644
--- a/libs/PiwikTracker/PiwikTracker.php
+++ b/libs/PiwikTracker/PiwikTracker.php
@@ -901,7 +901,9 @@ class PiwikTracker
$this->visitCount = $parts[2];
$this->currentVisitTs = $parts[3];
$this->lastVisitTs = $parts[4];
- $this->lastEcommerceOrderTs = $parts[5];
+ if(isset($parts[5])) {
+ $this->lastEcommerceOrderTs = $parts[5];
+ }
return true;
}