mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-16 14:50:29 +00:00
Remove unnecessary ternary operators such as (expr) ? true : false.
git-svn-id: https://develop.svn.wordpress.org/trunk@13769 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -1457,7 +1457,7 @@ function wp_tiny_mce( $teeny = false, $settings = false ) {
|
||||
$mce_buttons_4 = apply_filters('mce_buttons_4', array());
|
||||
$mce_buttons_4 = implode($mce_buttons_4, ',');
|
||||
}
|
||||
$no_captions = ( apply_filters( 'disable_captions', '' ) ) ? true : false;
|
||||
$no_captions = (bool) apply_filters( 'disable_captions', '' );
|
||||
|
||||
// TinyMCE init settings
|
||||
$initArray = array (
|
||||
|
||||
Reference in New Issue
Block a user