Upgrade/install: Improve logic check when determining installation status.
Improve handling of ambiguous return values to determine if a blog is installed. Props zieladam, xknown. Merges [49377] to trunk. Built from https://develop.svn.wordpress.org/trunk@49386 git-svn-id: http://core.svn.wordpress.org/trunk@49145 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d3ec258f91
commit
a8e86c768c
|
@ -1756,7 +1756,8 @@ function is_blog_installed() {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( ! $wpdb->get_results( "DESCRIBE $table;" ) ) {
|
$described_table = $wpdb->get_results( "DESCRIBE $table;" );
|
||||||
|
if ( is_array( $described_table ) && count( $described_table ) === 0 ) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.6-beta2-49385';
|
$wp_version = '5.6-beta2-49386';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue