Bug 1655292 - Fix undeclared variable in abCardOverlay.js. r=IanN

See Thunderbird Bug 1478572.
This commit is contained in:
Frank-Rainer Grahl 2020-07-20 19:59:59 +02:00
Родитель 74f1ccecf0
Коммит a490a5c5f3
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -842,6 +842,7 @@ function modifyDatepicker(aDatepicker) {
var dt = new Date(this.year, currentMonth, aValue);
return dt.getMonth() != currentMonth ? 1 : aValue;
}
var min = (aField == this.monthField) ? 0 : 1;
var max = (aField == this.monthField) ? 11 : kMaxYear;
// make sure the value isn't too high
if (aValue > max)