Changeset 49230 for trunk/src/wp-includes/class-wp-image-editor.php
- Timestamp:
- 10/20/2020 02:35:10 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-image-editor.php
r48586 r49230 366 366 367 367 if ( ! is_null( $dest_path ) ) { 368 $_dest_path = realpath( $dest_path ); 369 if ( $_dest_path ) { 370 $dir = $_dest_path; 368 if ( ! wp_is_stream( $dest_path ) ) { 369 $_dest_path = realpath( $dest_path ); 370 if ( $_dest_path ) { 371 $dir = $_dest_path; 372 } 373 } else { 374 $dir = $dest_path; 371 375 } 372 376 }
Note: See TracChangeset
for help on using the changeset viewer.