зеркало из https://github.com/mozilla/gecko-dev.git
bug 351866 - Fixes inability to print December month grid. patch by jminta, r1=lilmatt, r2=mvl
This commit is contained in:
Родитель
de7ec25bc4
Коммит
c31819c5d0
|
@ -146,7 +146,7 @@ function monthPrint_format(aStream, aStart, aEnd, aCount, aItems, aTitle) {
|
|||
|
||||
var body = <body/>
|
||||
|
||||
while (date.month <= end.month) {
|
||||
while (date.compare(end) <= 0) {
|
||||
var monthName = calGetString("dateFormat", "month." + (date.month +1)+ ".name");
|
||||
monthName += " " + start.year;
|
||||
body.appendChild(
|
||||
|
|
Загрузка…
Ссылка в новой задаче