Make WordPress Core


Ignore:
Timestamp:
04/14/2008 10:18:42 PM (18 years ago)
Author:
ryan
Message:

TinyMCE 3.0.7 from azaozz. fixes #6726 for 2.5

File:
1 edited

Legend:

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

    r7675 r7678  
    1313
    1414function getFileContents($path) {
    15     $path = realpath($path);
     15
     16    if ( function_exists('realpath') )
     17        $path = realpath($path);
    1618
    1719    if ( ! $path || ! @is_file($path) )
     
    151153    'relative_urls' => false,
    152154    'remove_script_host' => false,
     155    'convert_urls' => false,
    153156    'apply_source_formatting' => false,
    154157    'remove_linebreaks' => true,
     
    221224if ( $disk_cache ) {
    222225
    223     $cacheKey = apply_filters('tiny_mce_version', '20080327');
     226    $cacheKey = apply_filters('tiny_mce_version', '20080414');
    224227
    225228    foreach ( $initArray as $v )
Note: See TracChangeset for help on using the changeset viewer.