From bcbedd7f55dc05a673dd5961602943936acf9b7c Mon Sep 17 00:00:00 2001 From: desrosj Date: Mon, 23 Sep 2019 18:35:00 +0000 Subject: [PATCH] Coding Standards: Fix a coding standards issue introduced in [46254]. See #37392. Built from https://develop.svn.wordpress.org/trunk@46261 git-svn-id: http://core.svn.wordpress.org/trunk@46073 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-ms-sites-list-table.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/class-wp-ms-sites-list-table.php b/wp-admin/includes/class-wp-ms-sites-list-table.php index 5147139835..9e73490bb7 100644 --- a/wp-admin/includes/class-wp-ms-sites-list-table.php +++ b/wp-admin/includes/class-wp-ms-sites-list-table.php @@ -236,7 +236,7 @@ class WP_MS_Sites_List_Table extends WP_List_Table { ? ' class="current" aria-current="page"' : ''; if ( (int) $counts[ $status ] > 0 ) { - $label = sprintf( translate_nooped_plural( $label_count, $counts[ $status ] ), number_format_i18n( $counts[ $status ] ) ); + $label = sprintf( translate_nooped_plural( $label_count, $counts[ $status ] ), number_format_i18n( $counts[ $status ] ) ); $full_url = 'all' === $status ? $url : add_query_arg( 'status', $status, $url ); $view_links[ $status ] = sprintf( diff --git a/wp-includes/version.php b/wp-includes/version.php index e7ed517a6b..a28900d72f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-46260'; +$wp_version = '5.3-alpha-46261'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.