Changeset 45611 for trunk/src/wp-admin/includes/image.php
- Timestamp:
- 07/09/2019 05:44:42 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/image.php
r45543 r45611 164 164 if ( empty( $image_meta ) || ! isset( $image_meta['width'], $image_meta['height'] ) ) { 165 165 // New uploaded image. 166 $imagesize = getimagesize( $file );166 $imagesize = @getimagesize( $file ); 167 167 $image_meta['width'] = $imagesize[0]; 168 168 $image_meta['height'] = $imagesize[1]; … … 451 451 */ 452 452 function wp_exif_frac2dec( $str ) { 453 @list( $n, $d ) = explode( '/', $str ); 453 if ( false === strpos( $str, '/' ) ) { 454 return $str; 455 } 456 457 list( $n, $d ) = explode( '/', $str ); 454 458 if ( ! empty( $d ) ) { 455 459 return $n / $d; … … 467 471 */ 468 472 function wp_exif_date2ts( $str ) { 469 @list( $date, $time ) = explode( ' ', trim( $str ) );470 @list( $y, $m, $d ) = explode( ':', $date );473 list( $date, $time ) = explode( ' ', trim( $str ) ); 474 list( $y, $m, $d ) = explode( ':', $date ); 471 475 472 476 return strtotime( "{$y}-{$m}-{$d} {$time}" ); … … 864 868 wp_mkdir_p( dirname( $dst_file ) ); 865 869 866 if ( ! @copy( $src_file, $dst_file ) ) {870 if ( ! copy( $src_file, $dst_file ) ) { 867 871 $dst_file = false; 868 872 }
Note: See TracChangeset
for help on using the changeset viewer.