Are you saying the format isn't in the format "October 20, 2009 5:59:00 PM" after the change? To get into the format "Oct 23, 2009 7:05:14 PM", try using the below modified formatdate() function:
Code:
gfeedfetcher._formatdate=function(datestr, showoptions){
var mstring=['Jan', 'Feb', 'Mar', 'April', 'May', 'June', 'July', 'Aug', 'Sept', 'Oct', 'Nov', 'Dec']
var itemdate=new Date(datestr)
var parseddate=mstring[itemdate.getMonth()] + " " + itemdate.getDate() + " " + itemdate.getFullYear() + " " + itemdate.toLocaleTimeString()
return "<span class='datefield'>"+parseddate+"</span>"
}
Bookmarks