[twitter-dev] Re: missing comma in status creation time not parsing with Date in IE

2009-03-09 Thread Shannon Whitley
Here's a commonly used function for the date fix: // Make date parseable in IE [Jon Aquino 2007-03-29] // http://jonaquino.blogspot.com/2006/12/twitter-increasing-number-of-twitters.html function fixDate(d) { var a = d.split(' '); var year = a.pop(); return a.slice(0,

[twitter-dev] Re: missing comma in status creation time not parsing with Date in IE

2009-03-08 Thread Doug Williams
Adrian, Date formats have been a problem in the past. Issue 206 [1], scheduled for API V2, will handle the API's normalization of dates. [1] - http://code.google.com/p/twitter-api/issues/detail?id=206 Doug @dougw On Sun, Mar 8, 2009 at 5:38 AM, Adrian spiritpo...@gmail.com wrote: In IE, this