Changeset 45539 for trunk/src/wp-includes/media.php
- Timestamp:
- 06/15/2019 01:31:07 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media.php
r45538 r45539 236 236 // fall back to the old thumbnail 237 237 $thumb_file = wp_get_attachment_thumb_file( $id ); 238 $info = getimagesize( $thumb_file ); 238 $info = null; 239 240 if ( $thumb_file ) { 241 $info = getimagesize( $thumb_file ); 242 } 239 243 240 244 if ( $thumb_file && $info ) {
Note: See TracChangeset
for help on using the changeset viewer.