Ticket #17814: 17814.patch

File 17814.patch, 492 bytes (added by SergeyBiryukov, 10 months ago)
  • wp-includes/media.php

     
    247247        if ( is_numeric( $file ) ) 
    248248                $file = get_attached_file( $file ); 
    249249 
    250         if ( ! file_exists( $file ) ) 
     250        if ( ! file_exists( $file ) || ! is_file( $file ) ) 
    251251                return sprintf(__('File “%s” doesn’t exist?'), $file); 
    252252 
    253253        if ( ! function_exists('imagecreatefromstring') )