diff --git a/wp-admin/themes.php b/wp-admin/themes.php index 87b1b6db7a..9863aa68ae 100644 --- a/wp-admin/themes.php +++ b/wp-admin/themes.php @@ -363,8 +363,8 @@ if ( ! empty( $_GET['search'] ) ) { */ foreach ( $themes as $theme ) : - $aria_action = esc_attr( $theme['id'] . '-action' ); - $aria_name = esc_attr( $theme['id'] . '-name' ); + $aria_action = $theme['id'] . '-action'; + $aria_name = $theme['id'] . '-name'; $active_class = ''; if ( $theme['active'] ) { @@ -374,7 +374,7 @@ foreach ( $themes as $theme ) :
- +
@@ -508,7 +508,7 @@ foreach ( $themes as $theme ) : /* translators: %s: Theme name. */ $details_aria_label = sprintf( _x( 'View Theme Details for %s', 'theme' ), $theme['name'] ); ?> - +
-

+

-

+

@@ -899,7 +899,7 @@ function wp_theme_auto_update_setting_template() { /* translators: %s: Theme name. */ $aria_label = sprintf( _x( 'Activate %s', 'theme' ), '{{ data.name }}' ); ?> - + <# if ( data.actions.activate ) { #> - + <# } #> <# } else { #> @@ -1126,7 +1126,7 @@ function wp_theme_auto_update_setting_template() { $aria_label = sprintf( _x( 'Cannot Activate %s', 'theme' ), '{{ data.name }}' ); ?> <# if ( data.actions.activate ) { #> - + <# } #> <# } #> @@ -1137,7 +1137,7 @@ function wp_theme_auto_update_setting_template() { /* translators: %s: Theme name. */ $aria_label = sprintf( _x( 'Delete %s', 'theme' ), '{{ data.name }}' ); ?> - + <# } #>
diff --git a/wp-includes/version.php b/wp-includes/version.php index 7fa513802b..5f964d4324 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-52019'; +$wp_version = '5.9-alpha-52020'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.