Make WordPress Core


Ignore:
Timestamp:
01/08/2015 09:11:46 PM (10 years ago)
Author:
wonderboymusic
Message:

Use && instead of and in the 3 places where and was used.

See #30799.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/media.php

    r31090 r31099  
    360360 */
    361361function wp_constrain_dimensions( $current_width, $current_height, $max_width=0, $max_height=0 ) {
    362     if ( !$max_width and !$max_height )
     362    if ( !$max_width && !$max_height )
    363363        return array( $current_width, $current_height );
    364364
Note: See TracChangeset for help on using the changeset viewer.