From a7e9b93bab51915170f5b5263f9da8a52b576901 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 21 Feb 2008 00:52:51 +0000 Subject: [PATCH] Add a default for post_conten_filtered git-svn-id: https://develop.svn.wordpress.org/trunk@6951 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/post.php b/wp-includes/post.php index 4953ce6710..ff4d97fa85 100644 --- a/wp-includes/post.php +++ b/wp-includes/post.php @@ -1121,7 +1121,7 @@ function wp_insert_post($postarr = array()) { $defaults = array('post_status' => 'draft', 'post_type' => 'post', 'post_author' => $user_ID, 'ping_status' => get_option('default_ping_status'), 'post_parent' => 0, 'menu_order' => 0, 'to_ping' => '', 'pinged' => '', 'post_password' => '', - 'guid' => ''); + 'guid' => '', 'post_content_filtered' => ''); $postarr = wp_parse_args($postarr, $defaults); $postarr = sanitize_post($postarr, 'db');