Changeset 52978 for trunk/src/wp-includes/class-wp-image-editor-gd.php
- Timestamp:
- 03/22/2022 04:23:32 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-image-editor-gd.php
r52837 r52978 90 90 91 91 if ( ! is_file( $this->file ) && ! preg_match( '|^https?://|', $this->file ) ) { 92 return new WP_Error( 'error_loading_image', __( 'File does n’t exist?' ), $this->file );92 return new WP_Error( 'error_loading_image', __( 'File does not exist?' ), $this->file ); 93 93 } 94 94 … … 99 99 100 100 if ( ! $file_contents ) { 101 return new WP_Error( 'error_loading_image', __( 'File does n’t exist?' ), $this->file );101 return new WP_Error( 'error_loading_image', __( 'File does not exist?' ), $this->file ); 102 102 } 103 103
Note: See TracChangeset
for help on using the changeset viewer.