From ab5d9d899eb54f5195dfd8c220aa96daba852145 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Tue, 3 Aug 2021 23:20:44 +0200 Subject: Show current page in categories element Posts in a category are paginated, so display the number of the current page in square brackets within the categories <title> element. --- core/include/category/main.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'core/include/category') diff --git a/core/include/category/main.php b/core/include/category/main.php index 46ffa75..0fcece3 100644 --- a/core/include/category/main.php +++ b/core/include/category/main.php @@ -126,7 +126,8 @@ $MainTemplate->set('CATEGORY', $category_data); $MainTemplate->set('CATEGORIES', $category_list ?? []); $MainTemplate->set('HTML', $CategoryTemplate); $MainTemplate->set('HEAD', [ - 'NAME' => $category_data['ATTR']['NAME'], + 'NAME' => Application::getLanguage()->text('title_category', + [$category_data['ATTR']['NAME'], $currentSite]), 'DESC' => description($category_data['BODY']['HTML'](), Application::get('CATEGORY.DESCRIPTION_SIZE')), 'PERM' => $category_data['URL'], -- cgit v1.2.3