Date/Time, PHP Compat: Prevent type errors using GMT offset option.

Prevents a potential type errors when making use of the `gmt_offset` option by casting the value to a float prior to performing calculations with the value.

This mainly accounts for incorrect storage of values, such as an empty string or city name.

Follow up to [58923].

Props chaion07, hellofromtonya, kirasong, mhshohel, mukesh27, nicolefurlan, nihar007, nurielmeni, oglekler, peterwilsoncc, prionkor, rajinsharwar, rarst, rleeson, sabernhardt, SergeyBiryukov, swissspidy, toastercookie, verygoode.
Fixes #56358, #58986, #60629.

Built from https://develop.svn.wordpress.org/trunk@59064


git-svn-id: http://core.svn.wordpress.org/trunk@58460 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Peter Wilson
2024-09-18 22:37:15 +00:00
parent abe6e87596
commit 2cc6bb80ef
5 changed files with 5 additions and 5 deletions

View File

@@ -44,7 +44,7 @@ if ( $last_checked ) {
set_transient( 'mailserver_last_checked', true, WP_MAIL_INTERVAL );
$time_difference = get_option( 'gmt_offset' ) * HOUR_IN_SECONDS;
$time_difference = (int) ( (float) get_option( 'gmt_offset' ) * HOUR_IN_SECONDS );
$phone_delim = '::';