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:
parent
bb4e59f888
commit
7574626f2c
1 changed files with 2 additions and 2 deletions
|
@ -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 %]
|
||||
|
|
Loading…
Reference in a new issue