1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 00:37:42 +02:00

Merge pull request #5915 from mrgoldy/ticket/16222

[ticket/16222] Fix timezone suggestion for 00:00
This commit is contained in:
Marc Alexander
2020-03-21 17:17:19 +01:00

View File

@@ -853,7 +853,10 @@ phpbb.timezonePreselectSelect = function(forceSelector) {
var minutes = offset % 60;
var hours = (offset - minutes) / 60;
if (hours < 10) {
if (hours === 0) {
hours = '00';
sign = '+';
} else if (hours < 10) {
hours = '0' + hours.toString();
} else {
hours = hours.toString();