From b65ca1a727f96f4a32c26000f884e15bdba9fe54 Mon Sep 17 00:00:00 2001
From: sgiehl <stefan@piwik.org>
Date: Thu, 8 Jan 2015 18:25:42 +0100
Subject: [PATCH] fixes #6925 - do not display age as time string

---
 plugins/SEO/RankChecker.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
     }
-- 
GitLab