https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=39748 --- Comment #50 from Jonathan Druart <jonathan.druart@gmail.com> --- Wondering if we shouldn't also fix dt_from_string: @ Koha/DateUtils.pm:72 @ sub dt_from_string { my $server_tz = C4::Context->tz; $tz = C4::Context->tz unless $tz; - return DateTime->now( time_zone => $tz ) unless $date_string; + unless($date_string){ + my $dt = eval {DateTime->now( time_zone => $tz )}; + if ($@){ + $tz = DateTime::TimeZone->new( name => 'floating' ); + $dt = DateTime->new({time_sone => $tz}); + } + return $dt; + } But that's for another day... -- You are receiving this mail because: You are watching all bug changes.