X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/38ca813a0e312e2768e5b9519f0415cd0aa84781..cd3609994b39a094ff7528b93f55631bb213fd7f:/wp-admin/load-styles.php diff --git a/wp-admin/load-styles.php b/wp-admin/load-styles.php index be781e29..bdacc21c 100644 --- a/wp-admin/load-styles.php +++ b/wp-admin/load-styles.php @@ -21,7 +21,6 @@ function __() {} */ function _x() {} - /** * @ignore */ @@ -125,7 +124,12 @@ foreach( $load as $handle ) { $content .= get_file($rtl_path) . "\n"; } - $out .= str_replace( '../images/', 'images/', $content ); + if ( strpos( $style->src, '/wp-includes/css/' ) === 0 ) { + $content = str_replace( '../images/', '../wp-includes/images/', $content ); + $out .= str_replace( '../js/tinymce/', '../wp-includes/js/tinymce/', $content ); + } else { + $out .= str_replace( '../images/', 'images/', $content ); + } } header('Content-Type: text/css');