mirror of
https://github.com/WordPress/WordPress.git
synced 2025-03-06 05:19:32 +00:00
Media: Fix exif_imagetype check in wp_get_image_mime
This is a follow up to [39831]. Merges [39850] to the 3.9 branch. Built from https://develop.svn.wordpress.org/branches/3.9@39859 git-svn-id: http://core.svn.wordpress.org/branches/3.9@39796 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c47e0b66a2
commit
e2ef6cefbe
@ -2083,7 +2083,7 @@ function wp_get_image_mime( $file ) {
|
||||
* we assume the file could not be validated.
|
||||
*/
|
||||
try {
|
||||
if ( ! is_callable( 'exif_imagetype' ) ) {
|
||||
if ( is_callable( 'exif_imagetype' ) ) {
|
||||
$mime = image_type_to_mime_type( exif_imagetype( $file ) );
|
||||
} elseif ( function_exists( 'getimagesize' ) ) {
|
||||
$imagesize = getimagesize( $file );
|
||||
|
Loading…
x
Reference in New Issue
Block a user