Compare commits

..

1 Commits
5.4.4 ... 5.4.3

Author SHA1 Message Date
desrosj
076adfdad1 Tag 5.4.3
Built from https://develop.svn.wordpress.org/tags/5.4.3@49428


git-svn-id: http://core.svn.wordpress.org/tags/5.4.3@49187 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-10-29 19:43:36 +00:00
3 changed files with 2 additions and 30 deletions

View File

@@ -51,31 +51,6 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<div class="about__section changelog">
<div class="column">
<h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
<p>
<?php
printf(
/* translators: 1: WordPress version number, 2: Plural number of bugs. */
_n(
'<strong>Version %1$s</strong> addressed %2$s bug.',
'<strong>Version %1$s</strong> addressed %2$s bugs.',
1
),
'5.4.4',
number_format_i18n( 1 )
);
?>
<?php
printf(
/* translators: %s: HelpHub URL */
__( 'For more information, see <a href="%s">the release notes</a>.' ),
sprintf(
/* translators: %s: WordPress version */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
sanitize_title( '5.4.4' )
)
);
?>
</p>
<p>
<?php
printf(

View File

@@ -1743,10 +1743,7 @@ function is_blog_installed() {
}
$described_table = $wpdb->get_results( "DESCRIBE $table;" );
if (
( ! $described_table && empty( $wpdb->last_error ) ) ||
( is_array( $described_table ) && 0 === count( $described_table ) )
) {
if ( is_array( $described_table ) && count( $described_table ) === 0 ) {
continue;
}

View File

@@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.4.4';
$wp_version = '5.4.3';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.