Make WordPress Core


Ignore:
Timestamp:
05/07/2018 09:42:47 PM (7 years ago)
Author:
johnbillion
Message:

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

See #43193

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/plugin-install.php

    r43174 r43179  
    663663                                            $active_installs_millions = floor( $api->active_installs / 1000000 );
    664664                                            printf(
    665                                                 _nx( '%s+ Million', '%s+ Million', 'Active plugin installations', $active_installs_millions ),
     665                                                _nx( '%s+ Million', '%s+ Million', $active_installs_millions, 'Active plugin installations' ),
    666666                                                number_format_i18n( $active_installs_millions )
    667667                                            );
Note: See TracChangeset for help on using the changeset viewer.