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:
authordiosmosis <benaka@piwik.pro>2014-11-17 04:18:25 +0300
committerdiosmosis <benaka@piwik.pro>2014-11-17 04:18:25 +0300
commit85980f0210972b65cbf7523a9afba44c776f4791 (patch)
treecae807f346a0acf4ee160f36783e0cdfeef4f1d6 /plugins/Live
parent06dadeedbb315389d33611928a305ad63cac258b (diff)
Handle evolution metrics & goal metrics in Inconsistencies::getPercentMetrics, use correct time formatting in two other places, and fix ImportLogsTest.
Diffstat (limited to 'plugins/Live')
-rw-r--r--plugins/Live/Visitor.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Live/Visitor.php b/plugins/Live/Visitor.php
index 35368516db..5cbe823cd9 100644
--- a/plugins/Live/Visitor.php
+++ b/plugins/Live/Visitor.php
@@ -330,7 +330,7 @@ class Visitor implements VisitorInterface
$actionDetail['eventValue'] = round($actionDetail['custom_float'], self::EVENT_VALUE_PRECISION);
}
} elseif ($actionDetail['custom_float'] > 0) {
- $actionDetail['generationTime'] = $formatter->getPrettyTimeFromSeconds($actionDetail['custom_float'] / 1000);
+ $actionDetail['generationTime'] = $formatter->getPrettyTimeFromSeconds($actionDetail['custom_float'] / 1000, true);
}
unset($actionDetail['custom_float']);