Make WordPress Core

Ticket #51676: 51676.patch

File 51676.patch, 455 bytes (added by mukesh27, 4 years ago)

Patch that fixed the issue

  • src/wp-includes/functions.php

     
    17571757                }
    17581758
    17591759                $described_table = $wpdb->get_results( "DESCRIBE $table;" );
    1760                 if ( is_array( $described_table ) && count( $described_table ) === 0 ) {
     1760                if ( ! $wpdb->get_results( "DESCRIBE $table;" ) ) {
    17611761                        continue;
    17621762                }
    17631763