Changeset 5458 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/jobs/class-plugin-i18n-import.php
- Timestamp:
- 05/01/2017 10:10:30 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/jobs/class-plugin-i18n-import.php
r5453 r5458 26 26 $next_scheduled_event = array_shift( $next_scheduled_events ); 27 27 28 $next_scheduled_event['args'][0]['tags_touched'] = array_ merge(28 $next_scheduled_event['args'][0]['tags_touched'] = array_unique( array_merge( 29 29 $next_scheduled_event['args'][0]['tags_touched'], 30 30 $plugin_data['tags_touched'] 31 ) ;31 ) ); 32 32 33 33 if ( $plugin_data['readme_touched'] ) { … … 43 43 } 44 44 45 $next_scheduled_event['args'][0]['revisions'] = array_ merge(45 $next_scheduled_event['args'][0]['revisions'] = array_unique( array_merge( 46 46 $next_scheduled_event['args'][0]['revisions'], 47 47 $plugin_data['revisions'] 48 ) ;48 ) ); 49 49 50 50 $result = Manager::update_scheduled_event( "import_plugin_i18n:{$plugin_slug}", $next_scheduled, $next_scheduled_event );
Note: See TracChangeset
for help on using the changeset viewer.