From 01e0a645ccc4489b4da5a07a424a921e4817c5c0 Mon Sep 17 00:00:00 2001 From: Jeremy Felt Date: Fri, 30 Sep 2016 05:02:27 +0000 Subject: [PATCH] Admin Bar: Remove unused ID `ab-awaiting-mod` from comment count. This selector has been unused since [19516]. The (now) more appropriate `.awaiting-mod` is used instead. Props Presskopp. Fixes #37901. Built from https://develop.svn.wordpress.org/trunk@38683 git-svn-id: http://core.svn.wordpress.org/trunk@38626 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/admin-bar.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/admin-bar.php b/wp-includes/admin-bar.php index 5790d5be7b..d562cc6693 100644 --- a/wp-includes/admin-bar.php +++ b/wp-includes/admin-bar.php @@ -727,7 +727,7 @@ function wp_admin_bar_comments_menu( $wp_admin_bar ) { $awaiting_text = sprintf( _n( '%s comment awaiting moderation', '%s comments awaiting moderation', $awaiting_mod ), number_format_i18n( $awaiting_mod ) ); $icon = ''; - $title = ''; + $title = ''; $title .= '' . $awaiting_text . ''; $wp_admin_bar->add_menu( array( diff --git a/wp-includes/version.php b/wp-includes/version.php index 06f97486fd..b6387e79b1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38682'; +$wp_version = '4.7-alpha-38683'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.