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
This commit is contained in:
Sergey Biryukov 2015-05-31 21:53:35 +00:00
parent 68e76c1bbf
commit 3aad7082a3
1 changed files with 5 additions and 1 deletions

View File

@ -3008,7 +3008,11 @@ function wp_enqueue_media( $args = array() ) {
$hier = $post && is_post_type_hierarchical( $post->post_type ); $hier = $post && is_post_type_hierarchical( $post->post_type );
if ( $post ) {
$post_type_object = get_post_type_object( $post->post_type ); $post_type_object = get_post_type_object( $post->post_type );
} else {
$post_type_object = get_post_type_object( 'post' );
}
$strings = array( $strings = array(
// Generic // Generic