@@ -, +, @@ onsite-checkouts checkout' checkbox date with 23:59 as HH:MM. pass with "OK" for the commit. --- circ/circulation.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/circ/circulation.pl +++ a/circ/circulation.pl @@ -587,7 +587,7 @@ $template->param( AllowRenewalLimitOverride => C4::Context->preference("AllowRenewalLimitOverride"), canned_bor_notes_loop => $canned_notes, debarments => GetDebarments({ borrowernumber => $borrowernumber }), - todaysdate => dt_from_string()->set(hour => 23)->set(minute => 59), + todaysdate => output_pref( { dt => dt_from_string()->set(hour => 23)->set(minute => 59), dateformat => 'sql' } ), ); output_html_with_http_headers $query, $cookie, $template->output; --