Changeset 49456
- Timestamp:
- 10/30/2020 06:27:45 PM (4 years ago)
- Location:
- branches/5.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.2
-
branches/5.2/src/wp-includes/functions.php
r49394 r49456 1568 1568 1569 1569 $described_table = $wpdb->get_results( "DESCRIBE $table;" ); 1570 if ( is_array( $described_table ) && count( $described_table ) === 0 ) { 1570 if ( 1571 ( ! $described_table && empty( $wpdb->last_error ) ) || 1572 ( is_array( $described_table ) && 0 === count( $described_table ) ) 1573 ) { 1571 1574 continue; 1572 1575 }
Note: See TracChangeset
for help on using the changeset viewer.