From 9529cf5d4517aa8cca3c31c9b33c7182d04b088a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Grabowski?= Date: Thu, 2 Mar 2023 12:44:25 +0100 Subject: [PATCH] IBX-5214: System information page does not display service life information correctly (#118) --- .../views/themes/admin/system_info/my_ibexa.html.twig | 4 ++-- src/bundle/SystemInfo/Collector/IbexaSystemInfoCollector.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/bundle/Resources/views/themes/admin/system_info/my_ibexa.html.twig b/src/bundle/Resources/views/themes/admin/system_info/my_ibexa.html.twig index 95dd1930..b7ef5059 100644 --- a/src/bundle/Resources/views/themes/admin/system_info/my_ibexa.html.twig +++ b/src/bundle/Resources/views/themes/admin/system_info/my_ibexa.html.twig @@ -31,13 +31,13 @@ {{ 'ibexa.eom'|trans|desc('End of Maintenance') }}* - {{ info.endOfMaintenanceDate is empty ? '' : info.endOfMaintenanceDate|date('F Y') }} + {{ info.endOfMaintenanceDate is empty ? '' : info.endOfMaintenanceDate|date('F Y', false) }} {{ 'ibexa.eol'|trans|desc('End of Life') }}* - {{ info.endOfLifeDate is empty ? '' : info.endOfLifeDate|date('F Y') }} + {{ info.endOfLifeDate is empty ? '' : info.endOfLifeDate|date('F Y', false) }} diff --git a/src/bundle/SystemInfo/Collector/IbexaSystemInfoCollector.php b/src/bundle/SystemInfo/Collector/IbexaSystemInfoCollector.php index bb9f1041..2e40428a 100644 --- a/src/bundle/SystemInfo/Collector/IbexaSystemInfoCollector.php +++ b/src/bundle/SystemInfo/Collector/IbexaSystemInfoCollector.php @@ -59,7 +59,7 @@ class IbexaSystemInfoCollector implements SystemInfoCollector '3.0' => '2020-07-10T23:59:59+00:00', '3.1' => '2020-11-30T23:59:59+00:00', '3.2' => '2021-02-28T23:59:59+00:00', - '3.3' => '2023-12-30T23:59:59+00:00', + '3.3' => '2024-01-31T23:59:59+00:00', ]; /** @@ -74,7 +74,7 @@ class IbexaSystemInfoCollector implements SystemInfoCollector '3.0' => '2020-08-31T23:59:59+00:00', '3.1' => '2021-01-30T23:59:59+00:00', '3.2' => '2021-04-30T23:59:59+00:00', - '3.3' => '2025-12-30T23:59:59+00:00', + '3.3' => '2026-01-31T23:59:59+00:00', ]; /**