diff --git a/src/datemath/js/DateMath.js b/src/datemath/js/DateMath.js index df8f474eea..5d48412169 100755 --- a/src/datemath/js/DateMath.js +++ b/src/datemath/js/DateMath.js @@ -340,7 +340,7 @@ YAHOO.widget.DateMath = { * @return {Date} The JavaScript Date representing the first day of the month */ findMonthStart : function(date) { - var start = this.getDate(date.getFullYear(), date.getMonth(), 1); + var start = this.getDate(date.getFullYear(), date.getMonth(), 1, 12); return start; },