Make WordPress Core


Ignore:
Timestamp:
02/25/2008 07:03:35 PM (18 years ago)
Author:
ryan
Message:

Workaround Safari crasher. Props azaozz. fixes #5945

File:
1 edited

Legend:

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

    r6973 r7025  
    7272$ext_plugins = "\n";
    7373foreach ( $mce_external_plugins as $name => $url ) {
    74         $plugins[] = $name;
     74        $plugins[] = '-' . $name;
    7575        if ( $https ) str_replace('http://', 'https://', $url);
    7676       
     
    124124        'plugins' => "$plugins",
    125125        // pass-through the settings for compression and caching, so they can be changed with "tiny_mce_before_init"
    126         'disk_cache' => true,
     126        'disk_cache' => false,
    127127        'compress' => true,
    128128        'old_cache_max' => '1' // number of cache files to keep
     
    265265                        $cacheKey = trim( implode( "\n", $keys_ar ) );
    266266                }
    267                
     267
    268268                putFileContents( $keys_file, $cacheKey );
    269269        }
    270        
     270
    271271        putFileContents( $cache_file, $content );
    272272}
Note: See TracChangeset for help on using the changeset viewer.