Hmm thx for the bugreport, I’ll look into it! (by the way, it SHOULD be setting the date correctly, it does so on my blog, so this doesn’t happen for everyone ?? )
Fixed this with a workaround around line 350 like this:
$blah = str_replace(“T”, ” “, $blah);
$blah = str_replace(“Z”, “”, $blah);
$commentdata[‘comment_date’] = gmdate(“Y-m-d H:i:s”,strtotime($blah));