Issue 92: Days number are not correct for any october month
Status:  Released
Owner: ----
Closed:  Aug 2013
Reported by wordsloo...@gmail.com, Sep 4, 2009
What steps will reproduce the problem?
1. Open de calendar 
2. Search any month of October
3. See the number that appears in each day

What is the expected output? What do you see instead?
The number should go from 1 october to 31 october and what I see is that the numbers stop at 
16 or 17 and repeat again.

What version of the product are you using? On what operating system?
Version of fullcalendar 1.2.1
Operation system: MacOSX, 10.5.8
Browser: Safari 4.0.3 and Firefox 3.5

Please provide any additional information below.

Sep 5, 2009
#1 bsampie...@gmail.com
I had the same problem with Firefox 3.5 and Opera in openSuse. I tried the calendar
in Ubuntu and Windows with different versions of Firefox and there was no problem. So
I started to look a little bit, and found there is probably a javascript error when
communicating with OS dates or something, that when the Date hour is reset to 0 on
some dates of October (in my case always after the end of first week I think...) it
goes back to the previous day, this is what fullcalendar does when rendering the grid
by callling the "clearTime" function.

A temporary dirty solution that seems to work (for now...) is to modify the
"clearTime" calendar function to this:

function clearTime(d) {
  if (d.getMonth() == 9) // October bug
    d.setHours(12); 
  else
    d.setHours(0); 
  d.setMinutes(0);
  d.setSeconds(0); 
  d.setMilliseconds(0);
  return d;
}

Maybe someone knows better about this and can provide a better solution.

bye!

Sep 5, 2009
#2 wordsloo...@gmail.com
Thank you for your sooner answer but your solutions does not work for me. My problem appears at the end of 
the second week of every October month (near the 17th day).
Sep 8, 2009
Project Member #3 adamrs...@gmail.com
wordslooker,
that is really weird. i haven't been able to recreate it on this machine (win xp, ff 
3.5) but i believe you and will test on other machines until i get it. bsampietro, 
thank you for the research. maybe a special-cased clearTime is the best bet. will look 
into this problem further after the 1.3 release. thanks a lot
Status: Accepted
Sep 22, 2009
#4 epadem
Hi, i have the same error...In the 1.3 version i see the error to.
(win xp,ff 3.0 + ie 8 + chrome 3.0 + opera).
Thanx...
Sep 22, 2009
#5 lucasjay...@gmail.com
I had the same problem. The 17th October kept repeating until the end of the month (actually it was the third 
sunday of every october). I google a little and discovered that on that date (the third sunday in october) the 
daylight saving time was applied in my country (Argentina). Then, on my mac i've changed the "automatic time 
adjust" from "time.euro.apple.com" to just "time.apple.com". The problem solved, so the problem must be there. 
(Sorry for my very bad english)
Sep 28, 2009
Project Member #6 adamrs...@gmail.com
wordslooker / bsampietro / epadem / lucasjaymez,
I came up with a fix that i'm pretty sure will work. attached is the modified 
fullcalendar.js. call you all try it and verify that it works? thanks a ton
fullcalendar.js
46.9 KB   View   Download
Sep 30, 2009
Project Member #7 adamrs...@gmail.com
fixed in 1.3.1, thanks for the bug reports. let me know if any problems.
Oct 3, 2009
Project Member #8 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Fixed
Aug 13, 2013
Project Member #9 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Implemented
Aug 13, 2013
Project Member #10 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Released