Changeset 43580 for trunk/src/wp-admin/load-styles.php
- Timestamp:
- 08/20/2018 01:50:49 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/load-styles.php
r42343 r43580 30 30 } 31 31 32 $compress = ( isset( $_GET['c'] ) && $_GET['c'] );33 $force_gzip = ( $compress && 'gzip' == $_GET['c'] );34 32 $rtl = ( isset( $_GET['dir'] ) && 'rtl' == $_GET['dir'] ); 35 33 $expires_offset = 31536000; // 1 year … … 83 81 header( "Cache-Control: public, max-age=$expires_offset" ); 84 82 85 if ( $compress && ! ini_get( 'zlib.output_compression' ) && 'ob_gzhandler' != ini_get( 'output_handler' ) && isset( $_SERVER['HTTP_ACCEPT_ENCODING'] ) ) {86 header( 'Vary: Accept-Encoding' ); // Handle proxies87 if ( false !== stripos( $_SERVER['HTTP_ACCEPT_ENCODING'], 'deflate' ) && function_exists( 'gzdeflate' ) && ! $force_gzip ) {88 header( 'Content-Encoding: deflate' );89 $out = gzdeflate( $out, 3 );90 } elseif ( false !== stripos( $_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip' ) && function_exists( 'gzencode' ) ) {91 header( 'Content-Encoding: gzip' );92 $out = gzencode( $out, 3 );93 }94 }95 96 83 echo $out; 97 84 exit;
Note: See TracChangeset
for help on using the changeset viewer.