From 3aad7082a3806891c179de78cbec7e0031c867a6 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 31 May 2015 21:53:35 +0000 Subject: [PATCH] Avoid a PHP notice in `wp_enqueue_media()` if `$post` is null. see #19257. git-svn-id: https://develop.svn.wordpress.org/trunk@32675 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/media.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/media.php b/src/wp-includes/media.php index a054282040..4007fec7b9 100644 --- a/src/wp-includes/media.php +++ b/src/wp-includes/media.php @@ -3008,7 +3008,11 @@ function wp_enqueue_media( $args = array() ) { $hier = $post && is_post_type_hierarchical( $post->post_type ); - $post_type_object = get_post_type_object( $post->post_type ); + if ( $post ) { + $post_type_object = get_post_type_object( $post->post_type ); + } else { + $post_type_object = get_post_type_object( 'post' ); + } $strings = array( // Generic