From 7296f063d76ee01992a732989ed27221c5108b5e Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 3 Sep 2018 21:36:26 +0000 Subject: [PATCH] Help/About: Ensure the space after the period for the 4.9.8 changelog entry is preserved. Props chetan200891, burhandodhy, swissspidy. Fixes #44717. Built from https://develop.svn.wordpress.org/branches/4.9@43622 git-svn-id: http://core.svn.wordpress.org/branches/4.9@43451 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/about.php | 10 ++++------ wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/wp-admin/about.php b/wp-admin/about.php index 098cbc17be..549cc13c30 100644 --- a/wp-admin/about.php +++ b/wp-admin/about.php @@ -45,12 +45,10 @@ include( ABSPATH . 'wp-admin/admin-header.php' ); '4.9.8', number_format_i18n( 46 ) ); - - printf( - /* translators: %s: Codex URL */ - __( 'For more information, see the release notes.' ), - 'https://codex.wordpress.org/Version_4.9.8' - ); + ?> + the release notes.' ), 'https://codex.wordpress.org/Version_4.9.8' ); ?>

diff --git a/wp-includes/version.php b/wp-includes/version.php index 901ecce5b4..7b60d905dd 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9.9-alpha-43621'; +$wp_version = '4.9.9-alpha-43622'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.