Changeset 53303
- Timestamp:
- 04/28/2022 10:58:48 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/image.php
r53292 r53303 777 777 } 778 778 779 if ( ! is_array( $iptc ) ) { 780 $iptc = array(); 781 } 782 779 783 // Headline, "A brief synopsis of the caption". 780 784 if ( ! empty( $iptc['2#105'][0] ) ) { … … 844 848 // phpcs:ignore WordPress.PHP.NoSilencedErrors -- Silencing notice and warning is intentional. See https://core.trac.wordpress.org/ticket/42480 845 849 $exif = @exif_read_data( $file ); 850 } 851 852 if ( ! is_array( $exif ) ) { 853 $exif = array(); 846 854 } 847 855
Note: See TracChangeset
for help on using the changeset viewer.