From c896a0911e325cb9fd0640b0336c36bad268f503 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 24 Aug 2019 19:37:57 +0000 Subject: [PATCH] Site Health: Add timezone to Site Health Info page. Props justinahinon, sharaz, artisticasad, Rarst. Fixes #47842. Built from https://develop.svn.wordpress.org/trunk@45889 git-svn-id: http://core.svn.wordpress.org/trunk@45700 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-debug-data.php | 4 ++++ wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/wp-admin/includes/class-wp-debug-data.php b/wp-admin/includes/class-wp-debug-data.php index 963824afe6..674ea4b464 100644 --- a/wp-admin/includes/class-wp-debug-data.php +++ b/wp-admin/includes/class-wp-debug-data.php @@ -71,6 +71,10 @@ class WP_Debug_Data { 'label' => __( 'User Language' ), 'value' => get_user_locale(), ), + 'timezone' => array( + 'label' => __( 'Timezone' ), + 'value' => wp_timezone_string(), + ), 'home_url' => array( 'label' => __( 'Home URL' ), 'value' => get_bloginfo( 'url' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 58c682acda..571bc4a105 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45888'; +$wp_version = '5.3-alpha-45889'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.