diff --git a/src/wp-admin/includes/ajax-actions.php b/src/wp-admin/includes/ajax-actions.php
index 680a09ff32..0bebccbae7 100644
a
|
b
|
function wp_ajax_query_themes() { |
3561 | 3561 | ); |
3562 | 3562 | } |
3563 | 3563 | |
3564 | | $theme->name = wp_kses( $theme->name, $themes_allowedtags ); |
| 3564 | $theme->name = wp_specialchars_decode( wp_kses( $theme->name, $themes_allowedtags ) ); |
3565 | 3565 | $theme->author = wp_kses( $theme->author['display_name'], $themes_allowedtags ); |
3566 | 3566 | $theme->version = wp_kses( $theme->version, $themes_allowedtags ); |
3567 | 3567 | $theme->description = wp_kses( $theme->description, $themes_allowedtags ); |