Ticket #16920: 16920.4.patch
File 16920.4.patch, 3.3 KB (added by , 10 years ago) |
---|
-
wp-includes/js/tinymce/wp-tinymce.php
### Eclipse Workspace Patch 1.0 #P wordpress-trunk bare
27 27 header("Cache-Control: public, max-age=$expires_offset"); 28 28 29 29 if ( isset($_GET['c']) && 1 == $_GET['c'] && isset($_SERVER['HTTP_ACCEPT_ENCODING']) 30 && false !== str pos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'gzip') && ( $file = get_file($basepath . '/wp-tinymce.js.gz') ) ) {30 && false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') && ( $file = get_file($basepath . '/wp-tinymce.js.gz') ) ) { 31 31 32 32 header('Content-Encoding: gzip'); 33 33 echo $file; -
wp-admin/load-styles.php
134 134 135 135 if ( $compress && ! ini_get('zlib.output_compression') && 'ob_gzhandler' != ini_get('output_handler') && isset($_SERVER['HTTP_ACCEPT_ENCODING']) ) { 136 136 header('Vary: Accept-Encoding'); // Handle proxies 137 if ( false !== str pos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'deflate') && function_exists('gzdeflate') && ! $force_gzip ) {137 if ( false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'deflate') && function_exists('gzdeflate') && ! $force_gzip ) { 138 138 header('Content-Encoding: deflate'); 139 139 $out = gzdeflate( $out, 3 ); 140 } elseif ( false !== str pos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'gzip') && function_exists('gzencode') ) {140 } elseif ( false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') && function_exists('gzencode') ) { 141 141 header('Content-Encoding: gzip'); 142 142 $out = gzencode( $out, 3 ); 143 143 } -
wp-admin/load-scripts.php
129 129 130 130 if ( $compress && ! ini_get('zlib.output_compression') && 'ob_gzhandler' != ini_get('output_handler') && isset($_SERVER['HTTP_ACCEPT_ENCODING']) ) { 131 131 header('Vary: Accept-Encoding'); // Handle proxies 132 if ( false !== str pos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'deflate') && function_exists('gzdeflate') && ! $force_gzip ) {132 if ( false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'deflate') && function_exists('gzdeflate') && ! $force_gzip ) { 133 133 header('Content-Encoding: deflate'); 134 134 $out = gzdeflate( $out, 3 ); 135 } elseif ( false !== str pos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'gzip') && function_exists('gzencode') ) {135 } elseif ( false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') && function_exists('gzencode') ) { 136 136 header('Content-Encoding: gzip'); 137 137 $out = gzencode( $out, 3 ); 138 138 } -
wp-admin/includes/post.php
1614 1614 $language = $initArray['language']; 1615 1615 1616 1616 $compressed = $compress_scripts && $concatenate_scripts && isset($_SERVER['HTTP_ACCEPT_ENCODING']) 1617 && false !== str pos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'gzip');1617 && false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip'); 1618 1618 1619 1619 /** 1620 1620 * Deprecated