freescout icon indicating copy to clipboard operation
freescout copied to clipboard

Daylight saving time

Open freescout-helpdesk opened this issue 3 years ago • 2 comments

freescout doesn't support daylight saving time, so you will need to re-adjust timezone manually. For example, if you live in GMT+2, you will need to use GMT+3 now because of daylight saving time. Hopefully it will be implemented in future releases. https://github.com/freescout-helpdesk/freescout/issues/771#issuecomment-701219999

freescout-helpdesk avatar Sep 30 '20 07:09 freescout-helpdesk

When you set the timezone to a location such as Europe/Amsterdam, DST will automatically switch. Provided the PHP server's timezone database is current.

I just tested it on PHP 7.3

<?php
date_default_timezone_set ('Europe/Amsterdam');

echo date ('r');
// Sun, 04 Oct 2020 10:01:00 +0200

echo date ('r', time() + 86400*30);
// Tue, 03 Nov 2020 09:01:00 +0100

fvdm avatar Oct 04 '20 07:10 fvdm

recommending to close issue

fulldecent avatar Jul 09 '21 17:07 fulldecent