Code Duplication    Length = 2-3 lines in 2 locations

wp-admin/includes/image.php 2 locations

@@ 339-340 (lines=2) @@
336
			if ( ! empty( $iptc['2#055'][0] ) && ! empty( $iptc['2#060'][0] ) ) // created date and time
337
				$meta['created_timestamp'] = strtotime( $iptc['2#055'][0] . ' ' . $iptc['2#060'][0] );
338
339
			if ( ! empty( $iptc['2#116'][0] ) ) // copyright
340
				$meta['copyright'] = trim( $iptc['2#116'][0] );
341
342
			if ( ! empty( $iptc['2#025'][0] ) ) { // keywords array
343
				$meta['keywords'] = array_values( $iptc['2#025'] );
@@ 387-389 (lines=3) @@
384
			}
385
		}
386
387
		if ( empty( $meta['copyright'] ) && ! empty( $exif['Copyright'] ) ) {
388
			$meta['copyright'] = trim( $exif['Copyright'] );
389
		}
390
		if ( ! empty( $exif['FNumber'] ) ) {
391
			$meta['aperture'] = round( wp_exif_frac2dec( $exif['FNumber'] ), 2 );
392
		}