From 1fdea15a9693c7b103fafe15a6a1297d90048527 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 2 Nov 2021 20:19:59 +0000 Subject: [PATCH] Coding Standards: Fix some WPCS errors and warnings in `wp-admin/user-edit.php`: * Add missing translators comment. * Add missing space, correct indentation. * Put opening and closing PHP tag on a line by itself. * Remove unnecessary escaping for consistency with other strings. Follow-up to [51980]. See #53658. Built from https://develop.svn.wordpress.org/trunk@51988 git-svn-id: http://core.svn.wordpress.org/trunk@51577 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/user-edit.php | 19 +++++++++++-------- wp-includes/version.php | 2 +- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/wp-admin/user-edit.php b/wp-admin/user-edit.php index 101ac5269c..813c5eb5cd 100644 --- a/wp-admin/user-edit.php +++ b/wp-admin/user-edit.php @@ -796,14 +796,17 @@ endif; $application_passwords_list_table->display(); ?> - -

-

set the environment type accordingly to enable application passwords.' ), - __( 'https://wordpress.org/support/article/editing-wp-config-php/#wp_environment_type' ) - ); - ?>

+ +

+

+ set the environment type accordingly to enable application passwords.' ), + __( 'https://wordpress.org/support/article/editing-wp-config-php/#wp_environment_type' ) + ); + ?> +

diff --git a/wp-includes/version.php b/wp-includes/version.php index a49d5a8420..aca26a3eb6 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51985'; +$wp_version = '5.9-alpha-51988'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.