Changeset 45590 for trunk/src/wp-includes/class-wp-http-encoding.php
- Timestamp:
- 07/02/2019 11:41:16 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-http-encoding.php
r42746 r45590 53 53 } 54 54 55 if ( false !== ( $decompressed = @gzinflate( $compressed ) ) ) { 56 return $decompressed; 57 } 58 59 if ( false !== ( $decompressed = self::compatible_gzinflate( $compressed ) ) ) { 60 return $decompressed; 61 } 62 63 if ( false !== ( $decompressed = @gzuncompress( $compressed ) ) ) { 55 $decompressed = @gzinflate( $compressed ); 56 if ( false !== $decompressed ) { 57 return $decompressed; 58 } 59 60 $decompressed = self::compatible_gzinflate( $compressed ); 61 if ( false !== $decompressed ) { 62 return $decompressed; 63 } 64 65 $decompressed = @gzuncompress( $compressed ); 66 if ( false !== $decompressed ) { 64 67 return $decompressed; 65 68 }
Note: See TracChangeset
for help on using the changeset viewer.