Merge pull request #1519 from sudwebdesign/develop-get_default_timezone-from-php

Fix App lib Timezones::get_default_timezone() always UTC
This commit is contained in:
Alex Tselegidis 2024-05-11 19:15:07 +02:00 committed by GitHub
commit 9824095cfa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -530,7 +530,7 @@ class Timezones
*/
public function get_default_timezone(): string
{
return 'UTC';
return date_default_timezone_get();
}
/**