mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 01:48:05 +00:00
bug 351866 - Fixes inability to print December month grid. patch by jminta, r1=lilmatt, r2=mvl
This commit is contained in:
parent
de7ec25bc4
commit
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(
|
||||
|
Loading…
Reference in New Issue
Block a user