Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tz array #1113

Open
wants to merge 1 commit into
base: 2024_rc
Choose a base branch
from

Conversation

SylvainLegrand
Copy link

Dolibarr#31240
The list of time zones included in the 'get_tz_array()' function no longer matches the list of zones supported by PHP! See the pages "https://www.php.net/manual/fr/timezones.php"

When using these values, this caused a 500 error: "PHP Fatal error: Uncaught Exception: DateTimeZone::__construct(): Unknown or bad timezone (Pacific/Enderbury) " for example =>

$arraytz = get_tz_array();
foreach ($arraytz as $key => $value) {
$date = new DateTime();
$date->setTimezone(new DateTimeZone($value));
}

When several zone names could be used for the same time zone, I favored the canonical name (The primary, preferred zone name). See the table "https://en.wikipedia.org/wiki/List_of_tz_database_time_zones"

Dolibarr#31240
The list of time zones included in the 'get_tz_array()' function no longer matches the list of zones supported by PHP! See the pages "https://www.php.net/manual/fr/timezones.php"

When using these values, this caused a 500 error: "PHP Fatal error: Uncaught Exception: DateTimeZone::__construct(): Unknown or bad timezone (Pacific/Enderbury) " for example =>

$arraytz = get_tz_array();
foreach ($arraytz as $key => $value) {
$date = new DateTime();
$date->setTimezone(new DateTimeZone($value));
}
When several zone names could be used for the same time zone, I favored the canonical name (The primary, preferred zone name). See the table "https://en.wikipedia.org/wiki/List_of_tz_database_time_zones"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant