diff --git a/wp-admin/includes/class-wp-theme-install-list-table.php b/wp-admin/includes/class-wp-theme-install-list-table.php index f721f9473d..0d80596fab 100644 --- a/wp-admin/includes/class-wp-theme-install-list-table.php +++ b/wp-admin/includes/class-wp-theme-install-list-table.php @@ -148,7 +148,7 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { $api = themes_api( 'query_themes', $args ); if ( is_wp_error( $api ) ) { - wp_die( $api->get_error_message() . '

' . __( 'Try Again' ) . '' ); + wp_die( '

' . $api->get_error_message() . '

' . __( 'Try Again' ) . '

' ); } $this->items = $api->themes; diff --git a/wp-includes/version.php b/wp-includes/version.php index f51043c081..5fe27e58fc 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.7-alpha-49953'; +$wp_version = '5.7-alpha-49954'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.