From 012ddf095a4978cb7937f19a625dca6912d3781c Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 25 Nov 2019 10:07:02 +0000 Subject: [PATCH] Media: Avoid a PHP notice in `image_downsize()` when trying to replace a non-image URL with a rendered image from its meta. Props Mte90, jrf, hareesh-pillai. Fixes #48324. Built from https://develop.svn.wordpress.org/trunk@46772 git-svn-id: http://core.svn.wordpress.org/trunk@46572 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/media.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/media.php b/wp-includes/media.php index 861e6e27bf..da37f902c5 100644 --- a/wp-includes/media.php +++ b/wp-includes/media.php @@ -220,7 +220,7 @@ function image_downsize( $id, $size = 'medium' ) { // If the file isn't an image, attempt to replace its URL with a rendered image from its meta. // Otherwise, a non-image type could be returned. if ( ! $is_image ) { - if ( ! empty( $meta['sizes'] ) ) { + if ( ! empty( $meta['sizes']['full'] ) ) { $img_url = str_replace( $img_url_basename, $meta['sizes']['full']['file'], $img_url ); $img_url_basename = $meta['sizes']['full']['file']; $width = $meta['sizes']['full']['width']; diff --git a/wp-includes/version.php b/wp-includes/version.php index 58aa3abcb9..91c4341332 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-46770'; +$wp_version = '5.4-alpha-46772'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.