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
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Live/Visitor.php')
-rw-r--r--plugins/Live/Visitor.php23
1 files changed, 18 insertions, 5 deletions
diff --git a/plugins/Live/Visitor.php b/plugins/Live/Visitor.php
index eec1ecb6ce..e1ab974efd 100644
--- a/plugins/Live/Visitor.php
+++ b/plugins/Live/Visitor.php
@@ -360,6 +360,10 @@ class Visitor implements VisitorInterface
usort($actions, array('static', 'sortByServerTime'));
+ foreach ($actions as &$action) {
+ unset($action['idlink_va']);
+ }
+
$visitorDetailsArray['actionDetails'] = $actions;
foreach ($visitorDetailsArray['actionDetails'] as &$details) {
switch ($details['type']) {
@@ -415,10 +419,19 @@ class Visitor implements VisitorInterface
{
$ta = strtotime($a['serverTimePretty']);
$tb = strtotime($b['serverTimePretty']);
- return $ta < $tb
- ? -1
- : ($ta == $tb
- ? 0
- : 1);
+
+ if ($ta < $tb) {
+ return -1;
+ }
+
+ if ($ta == $tb) {
+ if ($a['idlink_va'] > $b['idlink_va']) {
+ return 1;
+ }
+
+ return -1;
+ }
+
+ return 1;
}
}