Media: Bring consistency to getimagesize() error suppression.
Props chasewg, joemcgill, jeremyfelt. Fixes #42480. Built from https://develop.svn.wordpress.org/trunk@42449 git-svn-id: http://core.svn.wordpress.org/trunk@42279 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -123,7 +123,7 @@ class WP_REST_Attachments_Controller extends WP_REST_Posts_Controller {
|
||||
$file = $file['file'];
|
||||
|
||||
// use image exif/iptc data for title and caption defaults if possible
|
||||
$image_meta = @wp_read_image_metadata( $file );
|
||||
$image_meta = wp_read_image_metadata( $file );
|
||||
|
||||
if ( ! empty( $image_meta ) ) {
|
||||
if ( empty( $request['title'] ) && trim( $image_meta['title'] ) && ! is_numeric( sanitize_title( $image_meta['title'] ) ) ) {
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.0-alpha-42447';
|
||||
$wp_version = '5.0-alpha-42449';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
||||
Reference in New Issue
Block a user