Media: In `wp_read_image_metadata()` make sure that IPTC keywords are UTF8 encoded.

Prevents missing `_wp_attachment_metadata` when an image contains keywords with latin extended characters.

Fixes #35316.
Built from https://develop.svn.wordpress.org/trunk@36429


git-svn-id: http://core.svn.wordpress.org/trunk@36396 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2016-02-01 14:53:27 +00:00
parent c9e5edd637
commit cd892b86b4
3 changed files with 19 additions and 4 deletions

View File

@ -408,12 +408,14 @@ function wp_read_image_metadata( $file ) {
} }
} }
foreach ( $meta as &$value ) { foreach ( $meta['keywords'] as $key => $keyword ) {
if ( is_string( $value ) ) { if ( ! seems_utf8( $keyword ) ) {
$value = wp_kses_post( $value ); $meta['keywords'][ $key ] = utf8_encode( $keyword );
} }
} }
$meta = wp_kses_post_deep( $meta );
/** /**
* Filter the array of meta data read from an image's exif data. * Filter the array of meta data read from an image's exif data.
* *

View File

@ -1581,6 +1581,19 @@ function wp_kses_post( $data ) {
return wp_kses( $data, 'post' ); return wp_kses( $data, 'post' );
} }
/**
* Navigates through an array, object, or scalar, and sanitizes content for
* allowed HTML tags for post content.
*
* @since 4.4.2
*
* @param mixed $value The array or string to filter.
* @return mixed $value The filtered content.
*/
function wp_kses_post_deep( $data ) {
return map_deep( $data, 'wp_kses_post' );
}
/** /**
* Strips all of the HTML in the content. * Strips all of the HTML in the content.
* *

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.5-alpha-36427'; $wp_version = '4.5-alpha-36429';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.