Changeset 49453
- Timestamp:
- 10/30/2020 05:54:48 PM (4 years ago)
- Location:
- branches/5.5
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.5
-
branches/5.5/src/wp-includes/functions.php
r49377 r49453 1755 1755 1756 1756 $described_table = $wpdb->get_results( "DESCRIBE $table;" ); 1757 if ( is_array( $described_table ) && count( $described_table ) === 0 ) { 1757 if ( 1758 ( ! $described_table && empty( $wpdb->last_error ) ) || 1759 ( is_array( $described_table ) && 0 === count( $described_table ) ) 1760 ) { 1758 1761 continue; 1759 1762 }
Note: See TracChangeset
for help on using the changeset viewer.