Bug 33261: Format dates in subscription_issues table

To test:
* Add a subscription
* Receive some issues
* Go to the subscription detail page, issues tab
* Verify the dates there display as YYYY-MM-DD
* Change DateFormat system preference setting, nothing changes.
* Apply patch
* Date should now be formatted in the way specified in the DateFormat system preference

Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Lucas Gass 2023-03-17 14:30:37 +00:00 committed by Tomas Cohen Arazi
parent bb4e59f888
commit 7574626f2c
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -272,14 +272,14 @@
</td>
<td>
[% IF serialslis.planneddate %]
[% serialslis.planneddate | html %]
[% serialslis.planneddate | $KohaDates %]
[% ELSE %]
<span>Unknown</span>
[% END %]
</td>
<td>
[% IF serialslis.publisheddate %]
[% serialslis.publisheddate | html %]
[% serialslis.publisheddate | $KohaDates %]
[% ELSE %]
<span>Unknown</span>
[% END %]