From 4d24c21a41a835138f2634661822360395606e67 Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Mon, 14 Jul 2025 11:09:42 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20descriptions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bl-kernel/helpers/theme.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bl-kernel/helpers/theme.class.php b/bl-kernel/helpers/theme.class.php index cde99cf0..050a2f8a 100644 --- a/bl-kernel/helpers/theme.class.php +++ b/bl-kernel/helpers/theme.class.php @@ -183,7 +183,7 @@ class Theme } elseif ($WHERE_AM_I == 'archive') { try { $archiveKey = $url->slug(); - return $L->get('all-post-archive') . Date::prettyArchiveDate($archiveKey); + return $L->get('all-post-archive') . " " . Date::prettyArchiveDate($archiveKey); } catch (Exception $e) { // Archive doesn't exist } @@ -191,7 +191,7 @@ class Theme try { $authorKey = $url->slug(); $user = new User($authorKey); - return $L->get('all-post-author') . $user->displayName(); + return $L->get('all-post-author') . " " . $user->displayName(); } catch (Exception $e) { // Author doesn't exist }