From 6dab34fe66d41b367141f8e1b96abfe1729d045b Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 14 Apr 2022 09:14:47 +0100 Subject: [PATCH] Bug 30540: eval on set_time_zone This patch adds an eval around the call to set_time_zone so that we don't crash on invalid local dates and instead just keep the passed floating timezone. Signed-off-by: Nick Clemens Signed-off-by: Marcel de Rooy Signed-off-by: Fridolin Somers Signed-off-by: Kyle M Hall --- Koha/DateUtils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/DateUtils.pm b/Koha/DateUtils.pm index 0d3b6e0f77..85478cc074 100644 --- a/Koha/DateUtils.pm +++ b/Koha/DateUtils.pm @@ -282,7 +282,7 @@ sub output_pref { # FIXME: see bug 13242 => no TZ for dates 'infinite' if ( $dt->ymd !~ /^9999/ ) { my $tz = $dateonly ? DateTime::TimeZone->new(name => 'floating') : C4::Context->tz; - $dt->set_time_zone( $tz ); + eval { $dt->set_time_zone( $tz ); } } my $pref = -- 2.39.5