From e8b900d9f566f0d3efe0f5d3e231c2f34454d40e Mon Sep 17 00:00:00 2001 From: Andrea Fercia Date: Thu, 17 Dec 2015 22:53:28 +0000 Subject: [PATCH] Accessibility: Remove title attributes from the Link Manager screen. Title attributes are now replaced with `aria-label` where appropriate. Also fixes some typos in the DocBlocks. Fixes #35135. Built from https://develop.svn.wordpress.org/trunk@35998 git-svn-id: http://core.svn.wordpress.org/trunk@35963 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- .../includes/class-wp-links-list-table.php | 20 +++++++++---------- wp-includes/version.php | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/wp-admin/includes/class-wp-links-list-table.php b/wp-admin/includes/class-wp-links-list-table.php index 4af3a5b5f2..4d2d975560 100644 --- a/wp-admin/includes/class-wp-links-list-table.php +++ b/wp-admin/includes/class-wp-links-list-table.php @@ -160,7 +160,7 @@ class WP_Links_List_Table extends WP_List_Table { } /** - * Handles the checkbox column ouput. + * Handles the checkbox column output. * * @since 4.3.0 * @access public @@ -175,7 +175,7 @@ class WP_Links_List_Table extends WP_List_Table { } /** - * Handles the link name column ouput. + * Handles the link name column output. * * @since 4.3.0 * @access public @@ -185,14 +185,14 @@ class WP_Links_List_Table extends WP_List_Table { public function column_name( $link ) { $edit_link = get_edit_bookmark_link( $link ); ?> - link_name ?>
+ link_name; ?>
link_url ); - echo "link_name ) )."'>$short_url"; + echo "$short_url"; } /** @@ -233,7 +233,7 @@ class WP_Links_List_Table extends WP_List_Table { } /** - * Handles the link relation column ouput. + * Handles the link relation column output. * * @since 4.3.0 * @access public @@ -245,7 +245,7 @@ class WP_Links_List_Table extends WP_List_Table { } /** - * Handles the link visibility column ouput. + * Handles the link visibility column output. * * @since 4.3.0 * @access public @@ -261,7 +261,7 @@ class WP_Links_List_Table extends WP_List_Table { } /** - * Handles the link rating column ouput. + * Handles the link rating column output. * * @since 4.3.0 * @access public diff --git a/wp-includes/version.php b/wp-includes/version.php index 8f94e6dc16..b4c2865392 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-35997'; +$wp_version = '4.5-alpha-35998'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.