diff --git a/C4/Serials.pm b/C4/Serials.pm
index 8069620be8..4eb23dfa9e 100644
--- a/C4/Serials.pm
+++ b/C4/Serials.pm
@@ -785,8 +785,6 @@ sub GetLatestSerials {
my @serials;
while ( my $line = $sth->fetchrow_hashref ) {
$line->{ "status" . $line->{status} } = 1; # fills a "statusX" value, used for template status select list
- $line->{planneddate} = output_pref( { dt => dt_from_string( $line->{planneddate} ), dateonly => 1 } );
- $line->{publisheddate} = output_pref( { dt => dt_from_string( $line->{publisheddate} ), dateonly => 1 } );
push @serials, $line;
}
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt
index 6520134dc2..6af2687453 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt
@@ -518,8 +518,8 @@
[% FOREACH latestserial IN subscription.latestserials %]
[% latestserial.serialseq | html %] |
- [% latestserial.planneddate | html %] |
- [% latestserial.publisheddate | html %] |
+ [% latestserial.planneddate | $KohaDates %] |
+ [% latestserial.publisheddate | $KohaDates %] |
[% IF ( latestserial.status1 ) %]Expected[% END %]
[% IF ( latestserial.status2 ) %]Arrived[% END %]
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing.tt
index b93120fc61..317bfc4e05 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing.tt
@@ -1,3 +1,4 @@
+[% USE KohaDates %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
Koha › Serials › [% title | html %] › [% IF ( op ) %]Create routing list[% ELSE %]Edit routing list[% END %]
@@ -35,8 +36,12 @@
-
[% issue | html %]
diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt
index d17c6eec0d..d3e95f0097 100644
--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt
+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt
@@ -853,8 +853,8 @@
[% FOREACH latestserial IN subscription.latestserials %]
[% latestserial.serialseq | html %] |
- [% latestserial.publisheddate | html %] |
- [% latestserial.planneddate | html %] |
+ [% latestserial.publisheddate | $KohaDates %] |
+ [% latestserial.planneddate | $KohaDates %] |
[% IF (latestserial.status1 ) %]Expected[% END %]
[% IF (latestserial.status2 ) %]Arrived[% END %]
| |