From bfba73995c04e68f639f1eb10ed4570f859b31e1 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Mon, 7 May 2018 21:43:20 +0000 Subject: [PATCH] Plugins: Correct another instance of incorrect parameter ordering when displaying plugins with more than one million active installations. See #43193 Built from https://develop.svn.wordpress.org/trunk@43179 git-svn-id: http://core.svn.wordpress.org/trunk@43008 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/plugin-install.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/plugin-install.php b/wp-admin/includes/plugin-install.php index 8425c0bb2d..f765fb286e 100644 --- a/wp-admin/includes/plugin-install.php +++ b/wp-admin/includes/plugin-install.php @@ -662,7 +662,7 @@ function install_plugin_information() { if ( $api->active_installs >= 1000000 ) { $active_installs_millions = floor( $api->active_installs / 1000000 ); printf( - _nx( '%s+ Million', '%s+ Million', 'Active plugin installations', $active_installs_millions ), + _nx( '%s+ Million', '%s+ Million', $active_installs_millions, 'Active plugin installations' ), number_format_i18n( $active_installs_millions ) ); } elseif ( 0 == $api->active_installs ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index db4e02f8e0..a4da21acf4 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-43178'; +$wp_version = '5.0-alpha-43179'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.