From 7998e04c486a43989843bb37af47dea4a0e6d2ac Mon Sep 17 00:00:00 2001 From: Andrea Fercia Date: Thu, 17 Dec 2015 22:52:27 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@35998 602fd350-edb4-49c9-b593-d223f7449a82 --- .../includes/class-wp-links-list-table.php | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/wp-admin/includes/class-wp-links-list-table.php b/src/wp-admin/includes/class-wp-links-list-table.php index 4af3a5b5f2..4d2d975560 100644 --- a/src/wp-admin/includes/class-wp-links-list-table.php +++ b/src/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