Changeset 56743
- Timestamp:
- 09/29/2023 12:19:29 PM (18 months ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/image.php
r56695 r56743 783 783 $iptc = iptcparse( $info['APP13'] ); 784 784 } else { 785 // phpcs:ignore WordPress.PHP.NoSilencedErrors --Silencing notice and warning is intentional. See https://core.trac.wordpress.org/ticket/42480785 // Silencing notice and warning is intentional. See https://core.trac.wordpress.org/ticket/42480 786 786 $iptc = @iptcparse( $info['APP13'] ); 787 787 } … … 856 856 $exif = exif_read_data( $file ); 857 857 } else { 858 // phpcs:ignore WordPress.PHP.NoSilencedErrors --Silencing notice and warning is intentional. See https://core.trac.wordpress.org/ticket/42480858 // Silencing notice and warning is intentional. See https://core.trac.wordpress.org/ticket/42480 859 859 $exif = @exif_read_data( $file ); 860 860 } -
trunk/src/wp-includes/functions.php
r56732 r56743 3318 3318 $imagesize = getimagesize( $file ); 3319 3319 } else { 3320 // phpcs:ignore WordPress.PHP.NoSilencedErrors3321 3320 $imagesize = @getimagesize( $file ); 3322 3321 } -
trunk/src/wp-includes/media.php
r56693 r56743 5478 5478 */ 5479 5479 if ( 2 === func_num_args() ) { 5480 // phpcs:ignore WordPress.PHP.NoSilencedErrors5481 5480 $info = @getimagesize( $filename, $image_info ); 5482 5481 } else { 5483 // phpcs:ignore WordPress.PHP.NoSilencedErrors5484 5482 $info = @getimagesize( $filename ); 5485 5483 }
Note: See TracChangeset
for help on using the changeset viewer.