Changeset 55990 for trunk/src/wp-includes/class-wp-http-encoding.php
- Timestamp:
- 06/22/2023 02:55:47 PM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-http-encoding.php
r54133 r55990 105 105 106 106 // Compressed data might contain a full header, if so strip it for gzinflate(). 107 if ( "\x1f\x8b\x08" === substr( $gz_data, 0, 3) ) {107 if ( str_starts_with( $gz_data, "\x1f\x8b\x08" ) ) { 108 108 $i = 10; 109 109 $flg = ord( substr( $gz_data, 3, 1 ) );
Note: See TracChangeset
for help on using the changeset viewer.