diff --git a/wp-includes/feed.php b/wp-includes/feed.php index cba5d91a7c..ecb4a25293 100644 --- a/wp-includes/feed.php +++ b/wp-includes/feed.php @@ -672,14 +672,7 @@ function get_feed_build_date( $format ) { } // Determine the maximum modified time. - $max_modified_time = max( - array_map( - function ( $time ) use ( $format ) { - return mysql2date( $format, $time, false ); - }, - $modified_times - ) - ); + $max_modified_time = mysql2date( $format, max( $modified_times ), false ); /** * Filters the date the last post or comment in the query was modified. diff --git a/wp-includes/version.php b/wp-includes/version.php index a84fae70d9..d284efd839 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45365'; +$wp_version = '5.3-alpha-45367'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.