Ticket #3826: 3826.diff
| File 3826.diff, 1.0 kB (added by rob1n, 1 year ago) |
|---|
-
wp-includes/js/tinymce/tiny_mce_config.php
old new 22 22 } 23 23 24 24 // Set up init variables 25 $valid_elements = ' p/-div[*],-strong/-b[*],-em/-i[*],-font[*],-ul[*],-ol[*],-li[*],*[*]';25 $valid_elements = '*[*]'; 26 26 $valid_elements = apply_filters('mce_valid_elements', $valid_elements); 27 28 $invalid_elements = apply_filters('mce_invalid_elements', ''); 27 29 28 30 $plugins = array('inlinepopups', 'autosave', 'spellchecker', 'paste', 'wordpress'); 29 31 $plugins = apply_filters('mce_plugins', $plugins); … … 81 83 button_tile_map : true, 82 84 content_css : "<?php echo $mce_css; ?>", 83 85 valid_elements : "<?php echo $valid_elements; ?>", 86 invalid_elements : "<?php echo $invalid_elements; ?>", 84 87 save_callback : 'TinyMCE_wordpressPlugin.saveCallback', 85 88 imp_version : "<?php echo intval($_GET['ver']); ?>", 86 89 <?php do_action('mce_options'); ?>
