@@ -, +, @@ --- .../opac-tmpl/bootstrap/en/includes/holds-table.inc | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc +++ a/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc @@ -66,12 +66,20 @@ [% END %] - [% HOLD.reservedate | $KohaDates %] + [% IF Koha.Preference('HourBasedHolds') %] + [% HOLD.reservedate | $KohaDates with_hours = 1 %] + [% ELSE %] + [% HOLD.reservedate | $KohaDates %] + [% END %] [% IF ! HOLD.found %] [% IF ( HOLD.expirationdate ) %] - [% HOLD.expirationdate | $KohaDates %] + [% IF Koha.Preference('HourBasedHolds') %] + [% HOLD.expirationdate | $KohaDates with_hours = 1 %] + [% ELSE %] + [% HOLD.expirationdate | $KohaDates %] + [% END %] [% ELSE %] Never expires [% END %] --