Make WordPress Core

Ticket #33206: 33206.4.diff

File 33206.4.diff, 867 bytes (added by pento, 9 years ago)
  • src/wp-admin/includes/upgrade.php

     
    16851685
    16861686                        $tables = $wpdb->tables( 'global' );
    16871687
     1688                        // sitecategories may not exist.
     1689                        if ( ! $this->get_var( "SHOW TABLES LIKE '{$tables['sitecategories']}'" ) ) {
     1690                                unset( $tables['sitecategories'] );
     1691                        }
     1692
    16881693                        foreach ( $tables as $table ) {
    16891694                                maybe_convert_table_to_utf8mb4( $table );
    16901695                        }
     
    17091714
    17101715                        $tables = $wpdb->tables( 'global' );
    17111716
     1717                        // sitecategories may not exist.
     1718                        if ( ! $this->get_var( "SHOW TABLES LIKE '{$tables['sitecategories']}'" ) ) {
     1719                                unset( $tables['sitecategories'] );
     1720                        }
     1721
    17121722                        foreach ( $tables as $table ) {
    17131723                                maybe_convert_table_to_utf8mb4( $table );
    17141724                        }