diff --git a/wp-includes/post-functions.php b/wp-includes/post-functions.php index bc084c46fa..404d07cc6b 100644 --- a/wp-includes/post-functions.php +++ b/wp-includes/post-functions.php @@ -1814,7 +1814,7 @@ function sanitize_post( $post, $context = 'display' ) { foreach ( array_keys(get_object_vars($post)) as $field ) $post->$field = sanitize_post_field($field, $post->$field, $post->ID, $context); $post->filter = $context; - } else { + } elseif ( is_array( $post ) ) { // Check if post already filtered for this context. if ( isset($post['filter']) && $context == $post['filter'] ) return $post; diff --git a/wp-includes/version.php b/wp-includes/version.php index c6b102374a..58e4443177 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34079'; +$wp_version = '4.4-alpha-34080'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.