Plugins: Correct another instance of incorrect parameter ordering when displaying plugins with more than one million active installations.

See #43193


git-svn-id: https://develop.svn.wordpress.org/trunk@43179 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn 2018-05-07 21:42:47 +00:00
parent 287be5420c
commit a131758bf5

View File

@ -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 ) {