Coding Standards: Use HOUR_IN_SECONDS where appropriate.

This aims to clarify the time units for some time offset values.

Follow-up to [21996], [23823], [40108], [41626].

See #56791.
Built from https://develop.svn.wordpress.org/trunk@54870


git-svn-id: http://core.svn.wordpress.org/trunk@54422 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2022-11-24 14:18:15 +00:00
parent c1dd534ec8
commit 34b6ab69b8
4 changed files with 4 additions and 4 deletions

View File

@ -234,7 +234,7 @@ class WP_Customize_Date_Time_Control extends WP_Customize_Control {
if ( $tz ) { if ( $tz ) {
$now = new DateTime( 'now', $tz ); $now = new DateTime( 'now', $tz );
$formatted_gmt_offset = $this->format_gmt_offset( $tz->getOffset( $now ) / 3600 ); $formatted_gmt_offset = $this->format_gmt_offset( $tz->getOffset( $now ) / HOUR_IN_SECONDS );
$tz_name = str_replace( '_', ' ', $tz->getName() ); $tz_name = str_replace( '_', ' ', $tz->getName() );
$timezone_info['abbr'] = $now->format( 'T' ); $timezone_info['abbr'] = $now->format( 'T' );

View File

@ -1797,7 +1797,7 @@ class WP_REST_Posts_Controller extends WP_REST_Controller {
* with the site's timezone offset applied. * with the site's timezone offset applied.
*/ */
if ( '0000-00-00 00:00:00' === $post->post_modified_gmt ) { if ( '0000-00-00 00:00:00' === $post->post_modified_gmt ) {
$post_modified_gmt = gmdate( 'Y-m-d H:i:s', strtotime( $post->post_modified ) - ( get_option( 'gmt_offset' ) * 3600 ) ); $post_modified_gmt = gmdate( 'Y-m-d H:i:s', strtotime( $post->post_modified ) - ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ) );
} else { } else {
$post_modified_gmt = $post->post_modified_gmt; $post_modified_gmt = $post->post_modified_gmt;
} }

View File

@ -859,7 +859,7 @@ function _wp_upgrade_revisions_of_post( $post, $revisions ) {
return false; return false;
} }
if ( $locked > $now - 3600 ) { if ( $locked > $now - HOUR_IN_SECONDS ) {
// Lock is not too old: some other process may be upgrading this post. Bail. // Lock is not too old: some other process may be upgrading this post. Bail.
return false; return false;
} }

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.2-alpha-54869'; $wp_version = '6.2-alpha-54870';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.