From 801705a502274c7b0adcd1da5237c118c055273e Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 5 Mar 2009 23:06:04 +0000 Subject: [PATCH] Initialize post_date_gmt for default post to edit. git-svn-id: http://svn.automattic.com/wordpress/trunk@10723 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 92e96a0b9..ad4720017 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';