Changeset 27929
- Timestamp:
- 04/03/2014 05:40:00 AM (11 years ago)
- Location:
- branches/3.8
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.8
- Property svn:mergeinfo changed
/trunk merged: 27906,27928
- Property svn:mergeinfo changed
-
branches/3.8/src/wp-includes/update.php
r27923 r27929 260 260 ); 261 261 262 if ( $ plugin_update_stats ) {262 if ( $extra_stats ) { 263 263 $options['body']['update_stats'] = json_encode( $extra_stats ); 264 264 } … … 405 405 ); 406 406 407 if ( $ theme_update_stats ) {407 if ( $extra_stats ) { 408 408 $options['body']['update_stats'] = json_encode( $extra_stats ); 409 409 } … … 621 621 add_action( 'admin_init', '_maybe_update_plugins' ); 622 622 add_action( 'wp_update_plugins', 'wp_update_plugins' ); 623 add_action( 'upgrader_process_complete', 'wp_update_plugins' );623 add_action( 'upgrader_process_complete', 'wp_update_plugins', 10, 0 ); 624 624 625 625 add_action( 'load-themes.php', 'wp_update_themes' ); … … 628 628 add_action( 'admin_init', '_maybe_update_themes' ); 629 629 add_action( 'wp_update_themes', 'wp_update_themes' ); 630 add_action( 'upgrader_process_complete', 'wp_update_themes' );630 add_action( 'upgrader_process_complete', 'wp_update_themes', 10, 0 ); 631 631 632 632 add_action( 'wp_maybe_auto_update', 'wp_maybe_auto_update' );
Note: See TracChangeset
for help on using the changeset viewer.