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 02:50:08 +0300
committerdiosmosis <benaka@piwik.pro>2014-11-17 02:50:08 +0300
commit4883a33512dbb20b2b5aee4d13f92cf038a0cd3a (patch)
tree13277842b3e95bde7d7732fc94b9349991a564e9 /plugins/Live
parent5f8eaf3389e004c711f13a9d529555d0522c663b (diff)
Make sure manual calls to MetricsFormatter::getPrettyTimeAsSeconds will use sentence if sentence was used before.
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 c7c8a13e6d..35368516db 100644
--- a/plugins/Live/Visitor.php
+++ b/plugins/Live/Visitor.php
@@ -346,7 +346,7 @@ class Visitor implements VisitorInterface
// Set the time spent for this action (which is the timeSpentRef of the next action)
if (isset($actionDetails[$actionIdx + 1])) {
$actionDetail['timeSpent'] = $actionDetails[$actionIdx + 1]['timeSpentRef'];
- $actionDetail['timeSpentPretty'] = $formatter->getPrettyTimeFromSeconds($actionDetail['timeSpent']);
+ $actionDetail['timeSpentPretty'] = $formatter->getPrettyTimeFromSeconds($actionDetail['timeSpent'], true);
}
unset($actionDetails[$actionIdx]['timeSpentRef']); // not needed after timeSpent is added