From def9fc374149a07cdce4d805f55d0a60fff7014f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 3 Aug 2021 12:18:57 +0000 Subject: [PATCH] Coding Standards: Correct `DateTimeZone` class name in `WP_Customize_Date_Time_Control::get_timezone_info()`. Follow-up to [41626]. See #53359. Built from https://develop.svn.wordpress.org/trunk@51534 git-svn-id: http://core.svn.wordpress.org/trunk@51145 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/customize/class-wp-customize-date-time-control.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/customize/class-wp-customize-date-time-control.php b/wp-includes/customize/class-wp-customize-date-time-control.php index ac31c418bf..607799768c 100644 --- a/wp-includes/customize/class-wp-customize-date-time-control.php +++ b/wp-includes/customize/class-wp-customize-date-time-control.php @@ -227,7 +227,7 @@ class WP_Customize_Date_Time_Control extends WP_Customize_Control { if ( $tz_string ) { try { - $tz = new DateTimezone( $tz_string ); + $tz = new DateTimeZone( $tz_string ); } catch ( Exception $e ) { $tz = ''; } diff --git a/wp-includes/version.php b/wp-includes/version.php index dd3b0d12d5..dfbdf05ec1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51533'; +$wp_version = '5.9-alpha-51534'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.