Checked in patch for bug 258898:

formatDateInterval on multiday event concatenates dates with "-- undefined"
This commit is contained in:
mostafah%oeone.com 2004-09-13 17:52:24 +00:00
parent 4ec667cc26
commit 0625897f50

View File

@ -505,7 +505,7 @@ DateFormater.prototype.formatInterval = function( startDateTime, endDateTime, is
this.makeRange(this.getFormatedTime(startDateTime),
this.getFormatedTime(endDateTime))))
// range across different days
: this.makeRange(this.formatDateTime(startDateTime) +
: this.makeRange(this.formatDateTime(startDateTime),
this.formatDateTime(endDateTime))));
}