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