Changeset 55990 for trunk/src/wp-admin/includes/update-core.php
- Timestamp:
- 06/22/2023 02:55:47 PM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/update-core.php
r55988 r55990 1243 1243 if ( is_array( $checksums ) ) { 1244 1244 foreach ( $checksums as $file => $checksum ) { 1245 if ( 'wp-content' === substr( $file, 0, 10) ) {1245 if ( str_starts_with( $file, 'wp-content' ) ) { 1246 1246 continue; 1247 1247 } … … 1350 1350 if ( isset( $checksums ) && is_array( $checksums ) ) { 1351 1351 foreach ( $checksums as $file => $checksum ) { 1352 if ( 'wp-content' === substr( $file, 0, 10) ) {1352 if ( str_starts_with( $file, 'wp-content' ) ) { 1353 1353 continue; 1354 1354 }
Note: See TracChangeset
for help on using the changeset viewer.