From dc2e57216d1883c37eeb38b2cb7105c6e9b28000 Mon Sep 17 00:00:00 2001
From: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Date: Thu, 12 Sep 2024 16:06:36 +0200
Subject: [PATCH] Bug 37902: Adjust timezone

We didn't take into account the server's timezone.

This does not feel right, we are not supposed to deal with time zone
outside of Koha::DateUtils.

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
---
 Koha/Object.pm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Koha/Object.pm b/Koha/Object.pm
index 54163dd9b54..63efcdd68fa 100644
--- a/Koha/Object.pm
+++ b/Koha/Object.pm
@@ -859,6 +859,7 @@ sub _recursive_fixup {
                         $value = $dtf->format_date($dt);
                     } else {
                         my $dt = Koha::DateTime::Format::RFC3339->parse_datetime($value);
+                        $dt->set_time_zone(C4::Context->tz);
                         $value = $dtf->format_datetime($dt);
                     }
                 } catch {
-- 
2.39.5