Changeset 49454
- Timestamp:
- 10/30/2020 06:25:22 PM (4 years ago)
- Location:
- branches/5.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.4
-
branches/5.4/src/wp-includes/functions.php
r49391 r49454 1744 1744 1745 1745 $described_table = $wpdb->get_results( "DESCRIBE $table;" ); 1746 if ( is_array( $described_table ) && count( $described_table ) === 0 ) { 1746 if ( 1747 ( ! $described_table && empty( $wpdb->last_error ) ) || 1748 ( is_array( $described_table ) && 0 === count( $described_table ) ) 1749 ) { 1747 1750 continue; 1748 1751 }
Note: See TracChangeset
for help on using the changeset viewer.