Make WordPress Core


Ignore:
Timestamp:
04/11/2011 06:55:11 PM (14 years ago)
Author:
ryan
Message:

Use stripos() instead of strpos( strtolower() ). Props hakre. see #16920

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/load-styles.php

    r12878 r17630  
    135135if ( $compress && ! ini_get('zlib.output_compression') && 'ob_gzhandler' != ini_get('output_handler') && isset($_SERVER['HTTP_ACCEPT_ENCODING']) ) {
    136136    header('Vary: Accept-Encoding'); // Handle proxies
    137     if ( false !== strpos( 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 ) {
    138138        header('Content-Encoding: deflate');
    139139        $out = gzdeflate( $out, 3 );
    140     } elseif ( false !== strpos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'gzip') && function_exists('gzencode') ) {
     140    } elseif ( false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') && function_exists('gzencode') ) {
    141141        header('Content-Encoding: gzip');
    142142        $out = gzencode( $out, 3 );
Note: See TracChangeset for help on using the changeset viewer.