Coding Standards: Silence a WPCS warning in `date_i18n()`.
This fixes a "Calling `current_time()` with a `$type` of `timestamp` or `U` is strongly discouraged as it will not return a Unix (UTC) timestamp" warning. Props jrf. See #53359. Built from https://develop.svn.wordpress.org/trunk@51557 git-svn-id: http://core.svn.wordpress.org/trunk@51168 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
62a788e40e
commit
04f4e911dc
|
@ -167,6 +167,7 @@ function date_i18n( $format, $timestamp_with_offset = false, $gmt = false ) {
|
|||
|
||||
// If timestamp is omitted it should be current time (summed with offset, unless `$gmt` is true).
|
||||
if ( ! is_numeric( $timestamp ) ) {
|
||||
// phpcs:ignore WordPress.DateTime.CurrentTimeTimestamp.Requested
|
||||
$timestamp = current_time( 'timestamp', $gmt );
|
||||
}
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.9-alpha-51556';
|
||||
$wp_version = '5.9-alpha-51557';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue