From ee141fe280b17a6bf6e147e8624dd726309502f1 Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Fri, 9 Jan 2009 13:05:16 +0000 Subject: [PATCH] TinyMCE: don't load unneeded CSS (custom styles have moved to /themes/advanced/skins/wp_theme) git-svn-id: https://develop.svn.wordpress.org/trunk@10338 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/post.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/wp-admin/includes/post.php b/wp-admin/includes/post.php index c64c657978..1a4cbc464f 100644 --- a/wp-admin/includes/post.php +++ b/wp-admin/includes/post.php @@ -1118,9 +1118,6 @@ function wp_tiny_mce( $teeny = false ) { $baseurl = includes_url('js/tinymce'); - $mce_css = $baseurl . '/wordpress.css'; - $mce_css = apply_filters('mce_css', $mce_css); - $mce_locale = ( '' == get_locale() ) ? 'en' : strtolower( substr(get_locale(), 0, 2) ); // only ISO 639-1 /* @@ -1268,12 +1265,16 @@ function wp_tiny_mce( $teeny = false ) { 'entities' => '38,amp,60,lt,62,gt', 'accessibility_focus' => true, 'tab_focus' => ':prev,:next', - 'content_css' => "$mce_css", 'save_callback' => 'switchEditors.saveCallback', 'wpeditimage_disable_captions' => $no_captions, 'plugins' => "$plugins" ); + $mce_css = apply_filters('mce_css', ''); + + if ( ! empty($mce_css) ) + $initArray['content_css'] = "$mce_css"; + // For people who really REALLY know what they're doing with TinyMCE // You can modify initArray to add, remove, change elements of the config before tinyMCE.init // Setting "valid_elements", "invalid_elements" and "extended_valid_elements" can be done through "tiny_mce_before_init".