Feeds: Ensure a feed’s `<lastBuildDate>` has the correct date.

The maximum modified time for a is currently being determined after an arbitrary date format is applied. Because the string sort in `max()` is being used to return the highest (most recent) modified value, the incorrect date is sometimes returned. This was introduced in [45247].

Merges [45367] to the 5.2 branch.

Reviewed by desrosj, SergeyBiryukov.
Props onlanka, Rarst, mukesh27.
Fixes #47304.
Built from https://develop.svn.wordpress.org/branches/5.2@45368


git-svn-id: http://core.svn.wordpress.org/branches/5.2@45179 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
desrosj 2019-05-20 14:47:54 +00:00
parent da22a1cc85
commit 67a2425575
2 changed files with 2 additions and 9 deletions

View File

@ -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.

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.2.1-RC1-45366';
$wp_version = '5.2.1-RC1-45368';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.