From 0b8101849ec646c328520339bf6647eb2bf83c91 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Sat, 12 Sep 2015 15:37:50 +0000 Subject: [PATCH] `sanitize_post()` is polymorphic, add an `is_array()` check for `$post` before operating on it as an array. Props morganestes. Fixes #33118. git-svn-id: https://develop.svn.wordpress.org/trunk@34080 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/post-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/post-functions.php b/src/wp-includes/post-functions.php index bc084c46fa..404d07cc6b 100644 --- a/src/wp-includes/post-functions.php +++ b/src/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;