diff --git a/wp-includes/admin-bar.php b/wp-includes/admin-bar.php
index ac117f7a52..e31b87bac9 100644
--- a/wp-includes/admin-bar.php
+++ b/wp-includes/admin-bar.php
@@ -692,16 +692,16 @@ function wp_admin_bar_comments_menu( $wp_admin_bar ) {
$awaiting_mod = wp_count_comments();
$awaiting_mod = $awaiting_mod->moderated;
- $awaiting_title = esc_attr( sprintf( _n( '%s comment awaiting moderation', '%s comments awaiting moderation', $awaiting_mod ), number_format_i18n( $awaiting_mod ) ) );
+ $awaiting_text = sprintf( _n( '%s comment awaiting moderation', '%s comments awaiting moderation', $awaiting_mod ), number_format_i18n( $awaiting_mod ) );
$icon = '';
- $title = '' . number_format_i18n( $awaiting_mod ) . '';
+ $title = '' . number_format_i18n( $awaiting_mod ) . '';
+ $title .= '' . $awaiting_text . '';
$wp_admin_bar->add_menu( array(
'id' => 'comments',
'title' => $icon . $title,
'href' => admin_url('edit-comments.php'),
- 'meta' => array( 'title' => $awaiting_title ),
) );
}
diff --git a/wp-includes/version.php b/wp-includes/version.php
index b12fab047f..8a5318ab5b 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
-$wp_version = '4.5-alpha-36092';
+$wp_version = '4.5-alpha-36093';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.