Bug 1127247 - Typo in timezone JSON property. r=philipp

This commit is contained in:
Philipp Kewisch 2015-01-29 10:33:37 +01:00
Родитель 2f7b14a15d
Коммит 580100dd21
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -154,7 +154,7 @@ function dateToJSON(aDate) {
let tzoffset_hr = Math.floor(Math.abs(full_tzoffset) / 3600);
let sign = (full_tzoffset < 0 ? "-" : "+");
if (tzoffset_hr == 0) {
jsonData.timezone = "UTC";
jsonData.timeZone = "UTC";
} else {
jsonData.timeZone = "Etc/GMT" + sign + tzoffset_hr;
}