Make WordPress Core


Ignore:
Timestamp:
01/05/2012 08:50:54 PM (13 years ago)
Author:
ryan
Message:

User lowercase true, false, null instead of uppercase. Props c3mdigital, mfields. fixes #16302

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/image.php

    r19593 r19687  
    105105
    106106        foreach ( get_intermediate_image_sizes() as $s ) {
    107             $sizes[$s] = array( 'width' => '', 'height' => '', 'crop' => FALSE );
     107            $sizes[$s] = array( 'width' => '', 'height' => '', 'crop' => false );
    108108            if ( isset( $_wp_additional_image_sizes[$s]['width'] ) )
    109109                $sizes[$s]['width'] = intval( $_wp_additional_image_sizes[$s]['width'] ); // For theme-added sizes
Note: See TracChangeset for help on using the changeset viewer.