Changeset 49455
- Timestamp:
- 10/30/2020 06:26:24 PM (4 years ago)
- Location:
- branches/5.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.3
-
branches/5.3/src/wp-includes/functions.php
r49393 r49455 1708 1708 1709 1709 $described_table = $wpdb->get_results( "DESCRIBE $table;" ); 1710 if ( is_array( $described_table ) && count( $described_table ) === 0 ) { 1710 if ( 1711 ( ! $described_table && empty( $wpdb->last_error ) ) || 1712 ( is_array( $described_table ) && 0 === count( $described_table ) ) 1713 ) { 1711 1714 continue; 1712 1715 }
Note: See TracChangeset
for help on using the changeset viewer.