Changeset 49452
- Timestamp:
- 10/30/2020 05:50:25 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r49386 r49452 1758 1758 1759 1759 $described_table = $wpdb->get_results( "DESCRIBE $table;" ); 1760 if ( is_array( $described_table ) && count( $described_table ) === 0 ) { 1760 if ( 1761 ( ! $described_table && empty( $wpdb->last_error ) ) || 1762 ( is_array( $described_table ) && 0 === count( $described_table ) ) 1763 ) { 1761 1764 continue; 1762 1765 }
Note: See TracChangeset
for help on using the changeset viewer.