Changes from trunk/wp-includes/js/tinymce/tiny_mce_config.php at r8313 to branches/2.6/wp-includes/js/tinymce/tiny_mce_config.php at r8607
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.6/wp-includes/js/tinymce/tiny_mce_config.php
r8313 r8607 131 131 $mce_buttons_4 = implode($mce_buttons_4, ','); 132 132 133 $ do_captions = ( defined('CAPTIONS_OFF') && true == CAPTIONS_OFF ) ? false : true;133 $no_captions = ( apply_filters( 'disable_captions', '' ) ) ? true : false; 134 134 135 135 // TinyMCE init settings … … 166 166 'content_css' => "$mce_css", 167 167 'save_callback' => 'switchEditors.saveCallback', 168 'wpeditimage_d o_captions' => $do_captions,168 'wpeditimage_disable_captions' => $no_captions, 169 169 'plugins' => "$plugins", 170 170 // pass-through the settings for compression and caching, so they can be changed with "tiny_mce_before_init" … … 226 226 if ( $disk_cache ) { 227 227 228 $cacheKey = apply_filters('tiny_mce_version', '20080 710');228 $cacheKey = apply_filters('tiny_mce_version', '20080810'); 229 229 230 230 foreach ( $initArray as $v )
Note: See TracChangeset
for help on using the changeset viewer.