Make WordPress Core


Ignore:
Timestamp:
12/17/2019 04:43:22 PM (5 years ago)
Author:
SergeyBiryukov
Message:

Upgrade/Install: Remove unused global in upgrade_430_fix_comments().

Props adnan.limdi.
Fixes #41970.

File:
1 edited

Legend:

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

    r46662 r46972  
    19631963 * @since 4.3.0
    19641964 *
    1965  * @global int  $wp_current_db_version The old (current) database version.
    1966  * @global wpdb $wpdb                  WordPress database abstraction object.
     1965 * @global wpdb $wpdb WordPress database abstraction object.
    19671966 */
    19681967function upgrade_430_fix_comments() {
    1969     global $wp_current_db_version, $wpdb;
     1968    global $wpdb;
    19701969
    19711970    $content_length = $wpdb->get_col_length( $wpdb->comments, 'comment_content' );
Note: See TracChangeset for help on using the changeset viewer.