From bf29d14a697604c78a32d593729656fcb3268a96 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 11 Feb 2020 16:48:05 +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. Built from https://develop.svn.wordpress.org/trunk@47268 git-svn-id: http://core.svn.wordpress.org/trunk@47068 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-debug-data.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/class-wp-debug-data.php b/wp-admin/includes/class-wp-debug-data.php index 23aa3678e4..40c4f5d13f 100644 --- a/wp-admin/includes/class-wp-debug-data.php +++ b/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, ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 4c99174a44..cb6162406e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @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.