From c896a6ee7bfe03678d6f14d5bdac3f700e4d8e08 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 5 Mar 2009 23:06:04 +0000 Subject: [PATCH] Initialize post_date_gmt for default post to edit. git-svn-id: https://develop.svn.wordpress.org/trunk@10723 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/post.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-admin/includes/post.php b/wp-admin/includes/post.php index 92e96a0b9e..ad47200176 100644 --- a/wp-admin/includes/post.php +++ b/wp-admin/includes/post.php @@ -346,6 +346,7 @@ function get_default_post_to_edit() { $post->post_name = ''; $post->post_author = ''; $post->post_date = ''; + $post->post_date_gmt = ''; $post->post_password = ''; $post->post_status = 'draft'; $post->post_type = 'post';