Make WordPress Core

Changeset 48751


Ignore:
Timestamp:
08/07/2020 04:30:32 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Comments: Update DB version number used to trigger the upgrade routine for changing the comment_type DB field value in comments table.

Follow-up to [47597], [47626], [48225], [48227], [48748].

Props desrosj.
See #49236.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/upgrade.php

    r48582 r48751  
    21752175
    21762176    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 
    21802177        $comment_previously_approved = get_option( 'comment_whitelist', '' );
    21812178        update_option( 'comment_previously_approved', $comment_previously_approved );
     
    21982195        delete_option( 'blacklist_keys' );
    21992196        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' );
    22002202    }
    22012203}
  • trunk/src/wp-includes/version.php

    r48683 r48751  
    2121 * @global int $wp_db_version
    2222 */
    23 $wp_db_version = 48575;
     23$wp_db_version = 48748;
    2424
    2525/**
Note: See TracChangeset for help on using the changeset viewer.