diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 55282b18df..2b75cfea03 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -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 ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 81b8911837..4a83638610 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.