From 48ec65eb4be3d0d8492b18658834212f768f7ee8 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 26 Dec 2019 19:51:36 +0000 Subject: [PATCH] Fix the "ago" date (with "received at") for other themes than frio --- src/Object/Post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Object/Post.php b/src/Object/Post.php index 2c4e841acb..acd0663504 100644 --- a/src/Object/Post.php +++ b/src/Object/Post.php @@ -420,7 +420,7 @@ class Post extends BaseObject 'localtime' => DateTimeFormat::local($item['created'], 'r'), 'ago' => $item['app'] ? L10n::t('%s from %s', $ago, $item['app']) : $ago, 'app' => $item['app'], - 'created' => Temporal::getRelativeDate($item['created']), + 'created' => $ago, 'lock' => $lock, 'location' => $location_e, 'indent' => $indent,