From 49b145c23fdccf3a8493f3af0f17ce9fa3b9c382 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 11 Feb 2020 16:46:10 +0000 Subject: [PATCH] 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 --- src/wp-admin/includes/class-wp-debug-data.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/includes/class-wp-debug-data.php b/src/wp-admin/includes/class-wp-debug-data.php index 23aa3678e4..40c4f5d13f 100644 --- a/src/wp-admin/includes/class-wp-debug-data.php +++ b/src/wp-admin/includes/class-wp-debug-data.php @@ -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, );