Changeset 11190 for trunk/wp-admin/includes/image.php
- Timestamp:
- 05/05/2009 04:28:05 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/image.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/image.php
r10682 r11190 138 138 139 139 if ( ! file_exists( $file ) ) 140 return sprintf(__( "File '%s' doesn't exist?"), $file);140 return sprintf(__('File “%s” doesn’t exist?'), $file); 141 141 142 142 if ( ! function_exists('imagecreatefromstring') ) … … 148 148 149 149 if ( !is_resource( $image ) ) 150 return sprintf(__( "File '%s' is not an image."), $file);150 return sprintf(__('File “%s” is not an image.'), $file); 151 151 152 152 return $image;
Note: See TracChangeset
for help on using the changeset viewer.