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.

git-svn-id: https://develop.svn.wordpress.org/trunk@47268 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-02-11 16:46:10 +00:00
parent 2599e1b4fb
commit 49b145c23f
1 changed files with 2 additions and 2 deletions

View File

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