Changeset 42801 for trunk/src/wp-includes/functions.php
- Timestamp:
- 03/08/2018 07:31:59 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r42800 r42801 1680 1680 // We need to find the permissions of the parent folder that exists and inherit that. 1681 1681 $target_parent = dirname( $target ); 1682 while ( '.' != $target_parent && ! is_dir( $target_parent ) ) {1682 while ( '.' != $target_parent && ! is_dir( $target_parent ) && dirname( $target_parent ) !== $target_parent ) { 1683 1683 $target_parent = dirname( $target_parent ); 1684 1684 }
Note: See TracChangeset
for help on using the changeset viewer.