Let wp_insert_post() figure out the GMT date.

git-svn-id: https://develop.svn.wordpress.org/trunk@2971 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2005-10-28 04:37:06 +00:00
parent 6fcc709db0
commit ea4ebf21a9
1 changed files with 1 additions and 1 deletions

View File

@ -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++;
}
}