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.