Changeset 46577 for trunk/src/wp-includes/functions.php
- Timestamp:
- 10/25/2019 11:03:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r46569 r46577 177 177 if ( 'U' === $format ) { 178 178 $date = $timestamp; 179 } elseif ( $gmt && !$timestamp_with_offset ) { // Current time in UTC.179 } elseif ( $gmt && false === $timestamp_with_offset ) { // Current time in UTC. 180 180 $date = wp_date( $format, null, new DateTimeZone( 'UTC' ) ); 181 } elseif ( !$timestamp_with_offset ) { // Current time in site's timezone.181 } elseif ( false === $timestamp_with_offset ) { // Current time in site's timezone. 182 182 $date = wp_date( $format ); 183 183 } else {
Note: See TracChangeset
for help on using the changeset viewer.