X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/4f9d63e13cd8c6e275797c75b401b074b82937bc..cd3609994b39a094ff7528b93f55631bb213fd7f:/wp-admin/load-styles.php diff --git a/wp-admin/load-styles.php b/wp-admin/load-styles.php index e9673e26..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'); @@ -134,10 +138,10 @@ header("Cache-Control: public, max-age=$expires_offset"); if ( $compress && ! ini_get('zlib.output_compression') && 'ob_gzhandler' != ini_get('output_handler') && isset($_SERVER['HTTP_ACCEPT_ENCODING']) ) { header('Vary: Accept-Encoding'); // Handle proxies - if ( false !== strpos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'deflate') && function_exists('gzdeflate') && ! $force_gzip ) { + if ( false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'deflate') && function_exists('gzdeflate') && ! $force_gzip ) { header('Content-Encoding: deflate'); $out = gzdeflate( $out, 3 ); - } elseif ( false !== strpos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'gzip') && function_exists('gzencode') ) { + } elseif ( false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') && function_exists('gzencode') ) { header('Content-Encoding: gzip'); $out = gzencode( $out, 3 ); }