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:
authorsgiehl <stefan@piwik.org>2015-01-08 20:25:42 +0300
committersgiehl <stefan@piwik.org>2015-01-08 20:25:42 +0300
commitb65ca1a727f96f4a32c26000f884e15bdba9fe54 (patch)
treec777ac01ce9f9653019f9b4135cfd9146e9b7c70 /plugins/SEO
parent4d2b33589c24fe2d13b1422cce5698a33d81ac8b (diff)
fixes #6925 - do not display age as time string
Diffstat (limited to 'plugins/SEO')
-rw-r--r--plugins/SEO/RankChecker.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SEO/RankChecker.php b/plugins/SEO/RankChecker.php
index fa254070df..655c434fc9 100644
--- a/plugins/SEO/RankChecker.php
+++ b/plugins/SEO/RankChecker.php
@@ -173,7 +173,7 @@ class RankChecker
}
if ($maxAge) {
- return $this->formatter->getPrettyTimeFromSeconds(time() - $maxAge);
+ return $this->formatter->getPrettyTimeFromSeconds(time() - $maxAge, true);
}
return false;
}