From a8cbd8c3da9ef8545343d42001f9126a52e9416d Mon Sep 17 00:00:00 2001 From: davidbaumwald Date: Mon, 19 Sep 2022 23:55:09 +0000 Subject: [PATCH] Upgrade/Install: Use "placeholder" for example values in setup-config.php. During install, the user is prompted for database connection settings. Inputs for the database name, username, and password will most likely be changed from the examples given, but these example values are presented as the input's `value` property. This required the user to clear the current value before entering their own. This change moves the example values for these fields to the `placeholder` property. Props oliverstapelfeldt, audrasjb, krupalpanchal, sabernhardt. Fixes #56365. Built from https://develop.svn.wordpress.org/trunk@54231 git-svn-id: http://core.svn.wordpress.org/trunk@53790 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/setup-config.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-admin/setup-config.php b/wp-admin/setup-config.php index bf5e1c84c3..e2cdc76317 100644 --- a/wp-admin/setup-config.php +++ b/wp-admin/setup-config.php @@ -213,17 +213,17 @@ switch ( $step ) { - + - + - + diff --git a/wp-includes/version.php b/wp-includes/version.php index 34da1586de..ec388a3110 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-54230'; +$wp_version = '6.1-alpha-54231'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.