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
This commit is contained in:
Andrew Ozz 2012-08-19 22:19:00 +00:00
parent c699530ab6
commit 4b05f3c604
1 changed files with 1 additions and 1 deletions

View File

@ -619,7 +619,7 @@ function wp_admin_bar_updates_menu( $wp_admin_bar ) {
return;
$title = '<span class="ab-icon"></span><span class="ab-label">' . number_format_i18n( $update_data['counts']['total'] ) . '</span>';
$title .= '<legend class="screen-reader-text"><span>' . $update_data['title'] . '</span></legend>';
$title .= '<span class="screen-reader-text">' . $update_data['title'] . '</span>';
$wp_admin_bar->add_menu( array(
'id' => 'updates',