Making WordPress.org


Ignore:
Timestamp:
12/13/2016 09:48:55 AM (10 years ago)
Author:
dd32
Message:

Plugin Directory: Fix a typo in the i18n importer [4520] by using a consistent variable name.

See #2330

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/jobs/class-plugin-import.php

    r4520 r4521  
    3030         * The cron trigger for the import job.
    3131         */
    32         public static function cron_trigger( $args ) {
    33                 $plugin_slug  = $args['plugin'];
    34                 $changed_tags = $args['tags_touched'];
     32        public static function cron_trigger( $plugin_data ) {
     33                $plugin_slug  = $plugin_data['plugin'];
     34                $changed_tags = $plugin_data['tags_touched'];
    3535
    3636                try {
Note: See TracChangeset for help on using the changeset viewer.