Make WordPress Core

Ticket #23102: 23102.diff

File 23102.diff, 902 bytes (added by jond3r, 12 years ago)

Patch

  • wp-includes/media.php

     
    13911391                                $size_meta = $meta['sizes'][ $size ];
    13921392
    13931393                                // We have the actual image size, but might need to further constrain it if content_width is narrower.
    1394                                 // This is not necessary for thumbnails and medium size.
    1395                                 if ( 'thumbnail' == $size || 'medium' == $size ) {
    1396                                         $width = $size_meta['width'];
    1397                                         $height = $size_meta['height'];
    1398                                 } else {
    1399                                         list( $width, $height ) = image_constrain_size_for_editor( $size_meta['width'], $size_meta['height'], $size, 'edit' );
    1400                                 }
     1394                                list( $width, $height ) = image_constrain_size_for_editor( $size_meta['width'], $size_meta['height'], $size, 'edit' );
    14011395
    14021396                                $sizes[ $size ] = array(
    14031397                                        'height'      => $height,