diff --git a/wp-admin/options-general.php b/wp-admin/options-general.php index dad6f94f3f..ff50e6fbd4 100644 --- a/wp-admin/options-general.php +++ b/wp-admin/options-general.php @@ -252,10 +252,10 @@ if ( empty( $tzstring ) ) { // Create a UTC+- zone if no timezone string exists

format( 'I' ); + + if ( $dst ) { _e( 'This timezone is currently in daylight saving time.' ); } else { _e( 'This timezone is currently in standard time.' ); @@ -296,8 +296,6 @@ if ( empty( $tzstring ) ) { // Create a UTC+- zone if no timezone string exists _e( 'This timezone does not observe daylight saving time.' ); } } - // Set back to UTC. - date_default_timezone_set( 'UTC' ); ?>

diff --git a/wp-includes/version.php b/wp-includes/version.php index 93f9e8b1f2..6a44371381 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45555'; +$wp_version = '5.3-alpha-45556'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.