Ticket #7724: patch_wp_includes_update_php_8941.diff
| File patch_wp_includes_update_php_8941.diff, 700 bytes (added by , 17 years ago) |
|---|
-
wp-includes/update.php
273 273 add_action( 'admin_init', '_maybe_update_themes' ); 274 274 add_action( 'wp_update_themes', 'wp_update_themes' ); 275 275 276 if ( !wp_next_scheduled('wp_update_plugins') )276 if ( !wp_next_scheduled('wp_update_plugins') && !defined('WP_INSTALLING') ) 277 277 wp_schedule_event(time(), 'twicedaily', 'wp_update_plugins'); 278 278 279 279 280 if ( !wp_next_scheduled('wp_update_themes') )280 if ( !wp_next_scheduled('wp_update_themes') && !defined('WP_INSTALLING') ) 281 281 wp_schedule_event(time(), 'twicedaily', 'wp_update_themes'); 282 282 283 283 ?>