From ea4ebf21a9c9d7b92fc0cae69ac0ecb9199485b1 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Fri, 28 Oct 2005 04:37:06 +0000 Subject: [PATCH] Let wp_insert_post() figure out the GMT date. git-svn-id: https://develop.svn.wordpress.org/trunk@2971 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/import/rss.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/import/rss.php b/wp-admin/import/rss.php index b566cb4e2c..0a647075b8 100644 --- a/wp-admin/import/rss.php +++ b/wp-admin/import/rss.php @@ -98,7 +98,7 @@ class RSS_Import { $post_author = 1; $post_status = 'publish'; - $this->posts[$index] = compact('post_author', 'post_date', 'post_date_gmt', 'post_content', 'post_title', 'post_status', 'guid', 'categories'); + $this->posts[$index] = compact('post_author', 'post_date', 'post_content', 'post_title', 'post_status', 'guid', 'categories'); $index++; } }