Issue 25: are the timestamps being send correct?
Status:  Released
Owner: ----
Closed:  Aug 2013
Reported by paul.wol...@gmail.com, May 27, 2009
I printed out the timestamps the calendar is sending to PHP when i click on
the arrows:   something strange is going on: 

2009-06-28
2009-05-31
2009-04-26 thismonth
2009-03-29
2009-03-01
2009-02-01
2008-12-28
2008-11-30
2008-10-26

this is my ajaxcall:
events: function(start, end, callback) {
		
		$.getJSON("index.php?pn=main&action=getActiveDates", {
	         timestamp: start.getTime()/1000  
	         
	      },
	      function(result) {
	          active_dates = result.dates;
			  callback(active_dates);
						  
	      });
	
	},


and in PHP i do this to get the year-month:

$date = date("Y-m", $frm_submitted['timestamp']);
May 27, 2009
#1 paul.wol...@gmail.com
i look at it again and i noticed that the months that seem to go wrong are the same
months which were goning wrong when i set weekStart as an option, see other issue.

february and march

but perhaps that's conincidence...
May 31, 2009
Project Member #2 adamrs...@gmail.com
yeah, this was correlated to the weekstart=1 bug. fixed in 1.2. thanks
Status: Fixed
Aug 13, 2013
Project Member #3 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Implemented
Aug 13, 2013
Project Member #4 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Released