Changeset 53946
- Timestamp:
- 08/26/2022 06:57:48 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r53944 r53946 2102 2102 * a symbolic link. 2103 2103 */ 2104 if ( realpath( $path ) == $path ) {2104 if ( realpath( $path ) === $path ) { 2105 2105 return true; 2106 2106 } 2107 2107 2108 if ( strlen( $path ) == 0 || '.' === $path[0] ) {2108 if ( strlen( $path ) === 0 || '.' === $path[0] ) { 2109 2109 return false; 2110 2110 }
Note: See TracChangeset
for help on using the changeset viewer.