Changeset 46756
- Timestamp:
- 11/21/2019 01:16:50 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/feed.php
r46732 r46756 683 683 684 684 // Determine the maximum modified time. 685 $max_modified_time = mysql2date( $format, max( $modified_times ), false ); 685 $datetime = date_create_immutable_from_format( 686 'Y-m-d h:i:s', 687 max( $modified_times ), 688 new DateTimeZone( 'UTC' ) 689 ); 690 691 $max_modified_time = $datetime->format( $format ); 686 692 687 693 /**
Note: See TracChangeset
for help on using the changeset viewer.