TinyMCE updates from azaozz. fixes #6340

git-svn-id: https://develop.svn.wordpress.org/trunk@7464 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2008-03-21 22:13:03 +00:00
parent 333cc6c1c8
commit 8c0ae81b06
13 changed files with 82 additions and 50 deletions

View File

@@ -31,12 +31,12 @@ class WP_Scripts {
// Let a plugin replace the visual editor
$visual_editor = apply_filters('visual_editor', array('tiny_mce'));
$this->add( 'editor', false, $visual_editor, '20080218' );
$this->add( 'editor', false, $visual_editor, '20080321' );
$this->add( 'editor_functions', '/wp-admin/js/editor.js', false, '20080317' );
$this->add( 'editor_functions', '/wp-admin/js/editor.js', false, '20080321' );
// Modify this version when tinyMCE plugins are changed.
$mce_version = apply_filters('tiny_mce_version', '20080317');
$mce_version = apply_filters('tiny_mce_version', '20080321');
$this->add( 'tiny_mce', '/wp-includes/js/tinymce/tiny_mce_config.php', array('editor_functions'), $mce_version );
$this->add( 'prototype', '/wp-includes/js/prototype.js', false, '1.6');