mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-21 17:11:53 +02:00
Merge branch '3.2.x' into 3.3.x
This commit is contained in:
@@ -948,7 +948,10 @@ phpbb.timezonePreselectSelect = function(forceSelector) {
|
|||||||
var minutes = offset % 60;
|
var minutes = offset % 60;
|
||||||
var hours = (offset - minutes) / 60;
|
var hours = (offset - minutes) / 60;
|
||||||
|
|
||||||
if (hours < 10) {
|
if (hours === 0) {
|
||||||
|
hours = '00';
|
||||||
|
sign = '+';
|
||||||
|
} else if (hours < 10) {
|
||||||
hours = '0' + hours.toString();
|
hours = '0' + hours.toString();
|
||||||
} else {
|
} else {
|
||||||
hours = hours.toString();
|
hours = hours.toString();
|
||||||
|
Reference in New Issue
Block a user