Changeset 43750
- Timestamp:
- 10/18/2018 04:14:41 AM (7 years ago)
- Location:
- branches/5.0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0
-
branches/5.0/src/wp-admin/includes/image.php
r43749 r43750 421 421 } 422 422 423 $exif = array(); 424 423 425 /** 424 426 * Filters the image types to check for exif data. … … 508 510 * @since 2.5.0 509 511 * @since 4.4.0 The `$iptc` parameter was added. 512 * @since 5.0.0 The `$exif` parameter was added. 510 513 * 511 514 * @param array $meta Image meta data. … … 513 516 * @param int $image_type Type of image, one of the `IMAGETYPE_XXX` constants. 514 517 * @param array $iptc IPTC data. 518 * @param array $exif EXIF data. 515 519 */ 516 return apply_filters( 'wp_read_image_metadata', $meta, $file, $image_type, $iptc );520 return apply_filters( 'wp_read_image_metadata', $meta, $file, $image_type, $iptc, $exif ); 517 521 518 522 }
Note: See TracChangeset
for help on using the changeset viewer.