From ba770cb87dd32192a197602de32d0cf5be516741 Mon Sep 17 00:00:00 2001 From: Karl Cordes Date: Wed, 26 Nov 2025 07:23:19 +1100 Subject: [PATCH] Fix timezone --- php/app/config/core.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/php/app/config/core.php b/php/app/config/core.php index e6278b04..84b91cd9 100644 --- a/php/app/config/core.php +++ b/php/app/config/core.php @@ -190,6 +190,8 @@ Configure::write('Tailscale.autoCreateUsers', false); */ Configure::write('Tailscale.defaultAccessLevel', 'user'); - - - +/** + * Set timezone to Australian Eastern Time + * This handles both AEST and AEDT (daylight saving) automatically + */ +date_default_timezone_set('Australia/Sydney');