Changeset 48751 for trunk/src/wp-admin/includes/upgrade.php
- Timestamp:
- 08/07/2020 04:30:32 PM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/upgrade.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/upgrade.php
r48582 r48751 2175 2175 2176 2176 if ( $wp_current_db_version < 48121 ) { 2177 update_option( 'finished_updating_comment_type', 0 );2178 wp_schedule_single_event( time() + ( 1 * MINUTE_IN_SECONDS ), 'wp_update_comment_type_batch' );2179 2180 2177 $comment_previously_approved = get_option( 'comment_whitelist', '' ); 2181 2178 update_option( 'comment_previously_approved', $comment_previously_approved ); … … 2198 2195 delete_option( 'blacklist_keys' ); 2199 2196 delete_option( 'blocklist_keys' ); 2197 } 2198 2199 if ( $wp_current_db_version < 48748 ) { 2200 update_option( 'finished_updating_comment_type', 0 ); 2201 wp_schedule_single_event( time() + ( 1 * MINUTE_IN_SECONDS ), 'wp_update_comment_type_batch' ); 2200 2202 } 2201 2203 }
Note: See TracChangeset
for help on using the changeset viewer.