Skip to content

Commit

Permalink
IBX-5214: System information page does not display service life infor…
Browse files Browse the repository at this point in the history
…mation correctly (#118)
  • Loading branch information
GrabowskiM committed Mar 2, 2023
1 parent ee9dceb commit 9529cf5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
<tr class="ez-table__row">
<td class="ez-table__cell">{{ 'ibexa.eom'|trans|desc('End of Maintenance') }}*</td>
<td class="ez-table__cell">
{{ info.endOfMaintenanceDate is empty ? '' : info.endOfMaintenanceDate|date('F Y') }}
{{ info.endOfMaintenanceDate is empty ? '' : info.endOfMaintenanceDate|date('F Y', false) }}
</td>
</tr>
<tr class="ez-table__row">
<td class="ez-table__cell">{{ 'ibexa.eol'|trans|desc('End of Life') }}*</td>
<td class="ez-table__cell">
{{ info.endOfLifeDate is empty ? '' : info.endOfLifeDate|date('F Y') }}
{{ info.endOfLifeDate is empty ? '' : info.endOfLifeDate|date('F Y', false) }}
</td>
</tr>
<tr class="ez-table__row">
Expand Down
4 changes: 2 additions & 2 deletions src/bundle/SystemInfo/Collector/IbexaSystemInfoCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
];

/**
Expand All @@ -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',
];

/**
Expand Down

0 comments on commit 9529cf5

Please sign in to comment.