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
This commit is contained in:
parent
930c98b7d8
commit
bfba73995c
|
@ -662,7 +662,7 @@ function install_plugin_information() {
|
||||||
if ( $api->active_installs >= 1000000 ) {
|
if ( $api->active_installs >= 1000000 ) {
|
||||||
$active_installs_millions = floor( $api->active_installs / 1000000 );
|
$active_installs_millions = floor( $api->active_installs / 1000000 );
|
||||||
printf(
|
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 )
|
number_format_i18n( $active_installs_millions )
|
||||||
);
|
);
|
||||||
} elseif ( 0 == $api->active_installs ) {
|
} elseif ( 0 == $api->active_installs ) {
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue