Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/js/tinymce/tiny_mce_config.php

    r8607 r8313  
    131131$mce_buttons_4 = implode($mce_buttons_4, ',');
    132132
    133 $no_captions = ( apply_filters( 'disable_captions', '' ) ) ? true : false;
     133$do_captions = ( defined('CAPTIONS_OFF') && true == CAPTIONS_OFF ) ? false : true;
    134134
    135135// TinyMCE init settings
     
    166166    'content_css' => "$mce_css",
    167167    'save_callback' => 'switchEditors.saveCallback',
    168     'wpeditimage_disable_captions' => $no_captions,
     168    'wpeditimage_do_captions' => $do_captions,
    169169    'plugins' => "$plugins",
    170170    // pass-through the settings for compression and caching, so they can be changed with "tiny_mce_before_init"
     
    226226if ( $disk_cache ) {
    227227
    228     $cacheKey = apply_filters('tiny_mce_version', '20080810');
     228    $cacheKey = apply_filters('tiny_mce_version', '20080710');
    229229
    230230    foreach ( $initArray as $v )
Note: See TracChangeset for help on using the changeset viewer.