diff --git a/wp-includes/option.php b/wp-includes/option.php index 3b4f461724..bb790673f7 100644 --- a/wp-includes/option.php +++ b/wp-includes/option.php @@ -1669,7 +1669,7 @@ function delete_expired_transients( $force_db = false ) { time() ) ); - } elseif ( is_multisite() && is_main_site() && is_main_network() ) { + } elseif ( is_main_site() && is_main_network() ) { // Multisite stores site transients in the sitemeta table. $wpdb->query( $wpdb->prepare( diff --git a/wp-includes/version.php b/wp-includes/version.php index d653fc86a8..c3e847e60f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.9-alpha-60447'; +$wp_version = '6.9-alpha-60448'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.