Ticket #17814: 17814.patch
File 17814.patch, 492 bytes (added by , 13 years ago) |
---|
-
wp-includes/media.php
247 247 if ( is_numeric( $file ) ) 248 248 $file = get_attached_file( $file ); 249 249 250 if ( ! file_exists( $file ) )250 if ( ! file_exists( $file ) || ! is_file( $file ) ) 251 251 return sprintf(__('File “%s” doesn’t exist?'), $file); 252 252 253 253 if ( ! function_exists('imagecreatefromstring') )