Media: Fix exif_imagetype check in wp_get_image_mime

This is a follow up to [39831].

Merges [39850] to the 3.7 branch.

Built from https://develop.svn.wordpress.org/branches/3.7@39861


git-svn-id: http://core.svn.wordpress.org/branches/3.7@39798 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Joe McGill 2017-01-11 16:46:22 +00:00
parent e6de513be6
commit 8d4f4a9a05
1 changed files with 1 additions and 1 deletions

View File

@ -1969,7 +1969,7 @@ function wp_get_image_mime( $file ) {
* we assume the file could not be validated. * we assume the file could not be validated.
*/ */
try { try {
if ( ! is_callable( 'exif_imagetype' ) ) { if ( is_callable( 'exif_imagetype' ) ) {
$mime = image_type_to_mime_type( exif_imagetype( $file ) ); $mime = image_type_to_mime_type( exif_imagetype( $file ) );
} elseif ( function_exists( 'getimagesize' ) ) { } elseif ( function_exists( 'getimagesize' ) ) {
$imagesize = getimagesize( $file ); $imagesize = getimagesize( $file );