Make WordPress Core


Ignore:
Timestamp:
03/19/2010 09:15:00 PM (15 years ago)
Author:
nacin
Message:

Remove unnecessary ternary operators such as (expr) ? true : false.

File:
1 edited

Legend:

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

    r13733 r13769  
    14581458        $mce_buttons_4 = implode($mce_buttons_4, ',');
    14591459    }
    1460     $no_captions = ( apply_filters( 'disable_captions', '' ) ) ? true : false;
     1460    $no_captions = (bool) apply_filters( 'disable_captions', '' );
    14611461
    14621462    // TinyMCE init settings
Note: See TracChangeset for help on using the changeset viewer.