Changeset 55988 for trunk/src/wp-admin/includes/file.php
- Timestamp:
- 06/22/2023 02:34:56 PM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/file.php
r55938 r55988 1694 1694 } 1695 1695 1696 if ( strpos( $dir, $to ) === false) { // If the directory is not within the working directory, skip it.1696 if ( ! str_contains( $dir, $to ) ) { // If the directory is not within the working directory, skip it. 1697 1697 continue; 1698 1698 } … … 1835 1835 } 1836 1836 1837 if ( strpos( $dir, $to ) === false) { // If the directory is not within the working directory, skip it.1837 if ( ! str_contains( $dir, $to ) ) { // If the directory is not within the working directory, skip it. 1838 1838 continue; 1839 1839 }
Note: See TracChangeset
for help on using the changeset viewer.