Changeset 42450 for branches/4.9/src/wp-admin/includes/image.php
- Timestamp:
- 01/15/2018 08:01:51 PM (7 years ago)
- Location:
- branches/4.9
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9
-
branches/4.9/src/wp-admin/includes/image.php
r41215 r42450 344 344 return false; 345 345 346 list( , , $sourceImageType ) = getimagesize( $file );346 list( , , $sourceImageType ) = @getimagesize( $file ); 347 347 348 348 /* … … 373 373 */ 374 374 if ( is_callable( 'iptcparse' ) ) { 375 getimagesize( $file, $info );375 @getimagesize( $file, $info ); 376 376 377 377 if ( ! empty( $info['APP13'] ) ) { 378 $iptc = iptcparse( $info['APP13'] );378 $iptc = @iptcparse( $info['APP13'] ); 379 379 380 380 // Headline, "A brief synopsis of the caption."
Note: See TracChangeset
for help on using the changeset viewer.