Changeset 17630
- Timestamp:
- 04/11/2011 06:55:11 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/post.php
r17625 r17630 1616 1616 1617 1617 $compressed = $compress_scripts && $concatenate_scripts && isset($_SERVER['HTTP_ACCEPT_ENCODING']) 1618 && false !== str pos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'gzip');1618 && false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip'); 1619 1619 1620 1620 /** -
trunk/wp-admin/load-scripts.php
r17609 r17630 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 ); -
trunk/wp-admin/load-styles.php
r12878 r17630 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 ); -
trunk/wp-includes/js/tinymce/wp-tinymce.php
r14765 r17630 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');
Note: See TracChangeset
for help on using the changeset viewer.