Changeset 45368
- Timestamp:
- 05/20/2019 02:46:35 PM (6 years ago)
- Location:
- branches/5.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.2
-
branches/5.2/src/wp-includes/feed.php
r45247 r45368 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 /**
Note: See TracChangeset
for help on using the changeset viewer.