diff --git a/wp-includes/rss.php b/wp-includes/rss.php index 45e543c09c..6d8941ab38 100644 --- a/wp-includes/rss.php +++ b/wp-includes/rss.php @@ -836,7 +836,7 @@ class RSSCache { if ( !function_exists('parse_w3cdtf') ) : function parse_w3cdtf ( $date_str ) { - # regex to match wc3dtf + # regex to match W3C date/time formats $pat = "/(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2})(:(\d{2}))?(?:([-+])(\d{2}):?(\d{2})|(Z))?/"; if ( preg_match( $pat, $date_str, $match ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index e406f4b85f..78b208d042 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-55643'; +$wp_version = '6.3-alpha-55644'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.