diff --git a/wp-includes/feed.php b/wp-includes/feed.php
index cba5d91a7c..ecb4a25293 100644
|
a
|
b
|
function get_feed_build_date( $format ) { |
| 672 | 672 | } |
| 673 | 673 | |
| 674 | 674 | // Determine the maximum modified time. |
| 675 | | $max_modified_time = max( |
| 676 | | array_map( |
| 677 | | function ( $time ) use ( $format ) { |
| 678 | | return mysql2date( $format, $time, false ); |
| 679 | | }, |
| 680 | | $modified_times |
| 681 | | ) |
| 682 | | ); |
| | 675 | $max_modified_time = mysql2date( $format, max( $modified_times ), false ); |
| 683 | 676 | |
| 684 | 677 | /** |
| 685 | 678 | * Filters the date the last post or comment in the query was modified. |