Index: livejournal-importer.php
===================================================================
--- livejournal-importer.php	(revision 337380)
+++ livejournal-importer.php	(working copy)
@@ -384,6 +384,9 @@
 		if ( 18 == strlen( $post_date ) )
 			$post_date = substr( $post_date, 0, 10 ) . ' ' . substr( $post_date, 10 );
 
+		// Adjust date from GMT to local time
+		$post_date = get_date_from_gmt( $post_date );
+
 		// Cleaning up and linking the title
 		$post_title = isset( $post['subject'] ) ? trim( $post['subject'] ) : '';
 		$post_title = $this->translate_lj_user( $post_title ); // Translate it, but then we'll strip the link
@@ -631,6 +634,9 @@
 		preg_match( '|<date>(.*)</date>|i', $comment, $matches );
 		$comment_date = trim( str_replace( array( 'T', 'Z' ), ' ', $matches[1] ) );
 
+		// Adjust date from GMT to local time
+		$comment_date = get_date_from_gmt( $comment_date );
+
 		// Grab IP if available
 		preg_match( '|<property name=\'poster_ip\'>(.*)</property>|i', $comment, $matches ); // optional
 		$comment_author_IP = isset( $matches[1] ) ? $matches[1] : '';
