From b013a15d43c646a485b1d015a6dedbd33ac57fc8 Mon Sep 17 00:00:00 2001 From: desrosj Date: Thu, 4 Jun 2020 15:47:09 +0000 Subject: [PATCH] Accessibility: Add the `aria-hidden` attribute to the auto-update related icons. `` elements used for displaying icons should use the `aria-hidden` attribute as they are purely decorative. Props audrasjb, ryokuhi. Fixes #50293. Built from https://develop.svn.wordpress.org/trunk@47910 git-svn-id: http://core.svn.wordpress.org/trunk@47684 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-ms-themes-list-table.php | 2 +- wp-admin/includes/class-wp-plugins-list-table.php | 2 +- wp-admin/themes.php | 4 ++-- wp-includes/version.php | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-admin/includes/class-wp-ms-themes-list-table.php b/wp-admin/includes/class-wp-ms-themes-list-table.php index 11b17304c7..5b8c44ae92 100644 --- a/wp-admin/includes/class-wp-ms-themes-list-table.php +++ b/wp-admin/includes/class-wp-ms-themes-list-table.php @@ -748,7 +748,7 @@ class WP_MS_Themes_List_Table extends WP_List_Table { $action ); - echo ''; + echo ''; echo '' . $text . ''; echo ''; diff --git a/wp-admin/includes/class-wp-plugins-list-table.php b/wp-admin/includes/class-wp-plugins-list-table.php index 89f7dffc2b..d3233b451b 100644 --- a/wp-admin/includes/class-wp-plugins-list-table.php +++ b/wp-admin/includes/class-wp-plugins-list-table.php @@ -1066,7 +1066,7 @@ class WP_Plugins_List_Table extends WP_List_Table { $action ); - echo ''; + echo ''; echo '' . $text . ''; echo ''; diff --git a/wp-admin/themes.php b/wp-admin/themes.php index 5ea32017c3..e87f8edd6e 100644 --- a/wp-admin/themes.php +++ b/wp-admin/themes.php @@ -632,12 +632,12 @@ if ( ! is_multisite() && $broken_themes ) {

<# if ( data.autoupdate ) { #> - + <# } else { #> - + <# } #> diff --git a/wp-includes/version.php b/wp-includes/version.php index 0e4a6d016e..ff6b87cf40 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-alpha-47909'; +$wp_version = '5.5-alpha-47910'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.