From 4b05f3c604b1df539028267de92759923b8f661d Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Sun, 19 Aug 2012 22:19:00 +0000 Subject: [PATCH] Fix screen reader text in IE7 and 8 in the toolbar "Updates" menu, props SergeyBiryukov, fixes #21333 git-svn-id: https://develop.svn.wordpress.org/trunk@21549 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/admin-bar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/admin-bar.php b/wp-includes/admin-bar.php index 31122fe8cf..4e3b9cfe1a 100644 --- a/wp-includes/admin-bar.php +++ b/wp-includes/admin-bar.php @@ -619,7 +619,7 @@ function wp_admin_bar_updates_menu( $wp_admin_bar ) { return; $title = '' . number_format_i18n( $update_data['counts']['total'] ) . ''; - $title .= '' . $update_data['title'] . ''; + $title .= '' . $update_data['title'] . ''; $wp_admin_bar->add_menu( array( 'id' => 'updates',