Changeset 27930
- Timestamp:
- 04/03/2014 05:46:28 AM (11 years ago)
- Location:
- branches/3.7
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.7
- Property svn:mergeinfo changed
/trunk merged: 27906,27928
- Property svn:mergeinfo changed
-
branches/3.7/src
- Property svn:mergeinfo changed
/trunk/src merged: 27906,27928
- Property svn:mergeinfo changed
-
branches/3.7/src/wp-includes/update.php
r27924 r27930 252 252 ); 253 253 254 if ( $ plugin_update_stats ) {254 if ( $extra_stats ) { 255 255 $options['body']['update_stats'] = json_encode( $extra_stats ); 256 256 } … … 397 397 ); 398 398 399 if ( $ theme_update_stats ) {399 if ( $extra_stats ) { 400 400 $options['body']['update_stats'] = json_encode( $extra_stats ); 401 401 } … … 613 613 add_action( 'admin_init', '_maybe_update_plugins' ); 614 614 add_action( 'wp_update_plugins', 'wp_update_plugins' ); 615 add_action( 'upgrader_process_complete', 'wp_update_plugins' );615 add_action( 'upgrader_process_complete', 'wp_update_plugins', 10, 0 ); 616 616 617 617 add_action( 'load-themes.php', 'wp_update_themes' ); … … 620 620 add_action( 'admin_init', '_maybe_update_themes' ); 621 621 add_action( 'wp_update_themes', 'wp_update_themes' ); 622 add_action( 'upgrader_process_complete', 'wp_update_themes' );622 add_action( 'upgrader_process_complete', 'wp_update_themes', 10, 0 ); 623 623 624 624 add_action( 'wp_maybe_auto_update', 'wp_maybe_auto_update' );
Note: See TracChangeset
for help on using the changeset viewer.