Site Health: Adjust "Database username" and "Table prefix" strings for consistency with the same strings in wp-admin/setup-config.php.

Props ramiy.
Fixes #47043.
Built from https://develop.svn.wordpress.org/trunk@47268


git-svn-id: http://core.svn.wordpress.org/trunk@47068 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-02-11 16:48:05 +00:00
parent 5bf387bb07
commit bf29d14a69
2 changed files with 3 additions and 3 deletions

View File

@ -752,7 +752,7 @@ class WP_Debug_Data {
); );
$info['wp-database']['fields']['database_user'] = array( $info['wp-database']['fields']['database_user'] = array(
'label' => __( 'Database user' ), 'label' => __( 'Database username' ),
'value' => $wpdb->dbuser, 'value' => $wpdb->dbuser,
'private' => true, 'private' => true,
); );
@ -770,7 +770,7 @@ class WP_Debug_Data {
); );
$info['wp-database']['fields']['database_prefix'] = array( $info['wp-database']['fields']['database_prefix'] = array(
'label' => __( 'Database prefix' ), 'label' => __( 'Table prefix' ),
'value' => $wpdb->prefix, 'value' => $wpdb->prefix,
'private' => true, 'private' => true,
); );

View File

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