Changeset 56825
- Timestamp:
- 10/11/2023 07:03:04 AM (16 months ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-filesystem-base.php
r56548 r56825 217 217 } 218 218 } elseif ( 'direct' === $this->method ) { 219 $folder = str_replace( '\\', '/', $folder ); // Windows path saniti sation.219 $folder = str_replace( '\\', '/', $folder ); // Windows path sanitization. 220 220 221 221 return trailingslashit( $folder ); … … 223 223 224 224 $folder = preg_replace( '|^([a-z]{1}):|i', '', $folder ); // Strip out Windows drive letter if it's there. 225 $folder = str_replace( '\\', '/', $folder ); // Windows path saniti sation.225 $folder = str_replace( '\\', '/', $folder ); // Windows path sanitization. 226 226 227 227 if ( isset( $this->cache[ $folder ] ) ) { -
trunk/src/wp-admin/includes/file.php
r56752 r56825 1267 1267 } 1268 1268 1269 // Perform signature vali ation if supported.1269 // Perform signature validation if supported. 1270 1270 if ( $signature_verification ) { 1271 1271 $signature = wp_remote_retrieve_header( $response, 'X-Content-Signature' ); -
trunk/src/wp-includes/class-wp-http-requests-response.php
r54997 r56825 9 9 10 10 /** 11 * Core wrapper object for a WpOrg\Requests\Response for standardi sation.11 * Core wrapper object for a WpOrg\Requests\Response for standardization. 12 12 * 13 13 * @since 4.6.0
Note: See TracChangeset
for help on using the changeset viewer.