Index: trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/d3forum_comment_synchro.php
===================================================================
--- trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/d3forum_comment_synchro.php	(revision 606)
+++ trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/d3forum_comment_synchro.php	(revision 616)
@@ -459,5 +459,7 @@
 	}
 	$comment_author_IP = "'" . $d3f_row->poster_ip . "'";
-	$comment_date = "'" . date('Y-m-d H:i:s' , $d3f_row->post_time) . "'";
+	$gmt_offset = get_option('gmt_offset');
+	$local_timestamp = $d3f_row->post_time + ($gmt_offset * 3600);
+	$comment_date = "'" . date('Y-m-d H:i:s' , $local_timestamp) . "'";
 	$comment_content = "'" . addSlashes($d3f_row->post_text) . "'";
 	$comment_approved = "'" . $d3f_row->approval . "'";
@@ -543,5 +545,5 @@
 
 	$sql  =	"SELECT $wp_comments.comment_ID,$wp_comments.comment_post_ID, ";
-	$sql .=		"$wp_comments.comment_author, $wp_comments.comment_author_email,  $wp_comments.comment_date, ";
+	$sql .=		"$wp_comments.comment_author, $wp_comments.comment_author_email,  $wp_comments.comment_date, $wp_comments.comment_date_gmt, ";
 	$sql .=		"$wp_comments.comment_author_url, $wp_comments.comment_author_IP, ";
 	$sql .=		"$wp_comments.comment_content, $wp_comments.comment_karma, ";
@@ -561,6 +563,6 @@
 	$topic_external_link_id = $row->comment_post_ID; //There is information on WP post_ID in topic_external_link_id of D3Forum
 	$topic_title = 'Re.' . addSlashes($row->post_title);
-	$post_time = strtotime($row->comment_date);		// or	$row2['comment_date_gmt']
-	$modified_time = strtotime($row->comment_date);	// or	$row2['comment_date_gmt']
+	$post_time = strtotime($row->comment_date_gmt);	
+	$modified_time = strtotime($row->comment_date_gmt);
 	require_once (get_xpress_dir_path() . 'include/general_functions.php');
 	if (empty($row->user_id)){
