diff --git a/wp-admin/options-general.php b/wp-admin/options-general.php index ce95119d7e..765c93f8d7 100644 --- a/wp-admin/options-general.php +++ b/wp-admin/options-general.php @@ -157,7 +157,7 @@ if ( empty($tzstring) ) { // Create a UTC+- zone if no timezone string exists /* translators: 1: UTC abbreviation, 2: UTC time */ printf( __( 'Universal time (%1$s) is %2$s.' ), '' . __( 'UTC' ) . '', - '' . date_i18n( $timezone_format, false, 'gmt' ) . '' + '' . date_i18n( $timezone_format, false, true ) . '' ); ?> diff --git a/wp-includes/version.php b/wp-includes/version.php index b31e55b41d..0834260e84 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38501'; +$wp_version = '4.7-alpha-38502'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.