Changeset 48121 for trunk/src/wp-admin/includes/upgrade.php
- Timestamp:
- 06/22/2020 05:24:34 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/upgrade.php
r47808 r48121 836 836 } 837 837 838 if ( $wp_current_db_version < 4 7597) {838 if ( $wp_current_db_version < 48082 ) { 839 839 upgrade_550(); 840 840 } … … 2169 2169 update_option( 'finished_updating_comment_type', 0 ); 2170 2170 wp_schedule_single_event( time() + ( 1 * MINUTE_IN_SECONDS ), 'wp_update_comment_type_batch' ); 2171 2172 // Use more clear and inclusive language. 2173 $blocklist = get_option( 'blacklist_keys', '' ); 2174 update_option( 'blocklist_keys', $blocklist ); 2175 delete_option( 'blacklist_keys' ); 2176 2177 $comment_previously_approved = get_option( 'comment_whitelist', '' ); 2178 update_option( 'comment_previously_approved', $comment_previously_approved ); 2179 delete_option( 'comment_whitelist' ); 2171 2180 } 2172 2181
Note: See TracChangeset
for help on using the changeset viewer.