From 5ca855b43acec60ee010a74aad98f9dce9010773 Mon Sep 17 00:00:00 2001 From: rob1n Date: Fri, 27 Apr 2007 00:56:12 +0000 Subject: [PATCH] Use non-GMT date. fixes #3034 git-svn-id: https://develop.svn.wordpress.org/trunk@5326 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/import/livejournal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/import/livejournal.php b/wp-admin/import/livejournal.php index 690005b309..8c1bed0987 100644 --- a/wp-admin/import/livejournal.php +++ b/wp-admin/import/livejournal.php @@ -49,7 +49,7 @@ class LJ_Import { preg_match('|(.*?)|is', $post, $post_date); $post_date = strtotime($post_date[1]); - $post_date = gmdate('Y-m-d H:i:s', $post_date); + $post_date = date('Y-m-d H:i:s', $post_date); preg_match('|(.*?)|is', $post, $post_content); $post_content = str_replace(array (''), '', trim($post_content[1]));