Make WordPress Core

Changes between Version 1 and Version 2 of Ticket #24730, comment 21


Ignore:
Timestamp:
05/27/2019 08:49:54 PM (6 years ago)
Author:
johnjamesjacoby
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24730, comment 21

    v1 v2  
    99{{{
    1010        // Prepare
    11         $offset   = (float) get_option( 'gmt_offset' );
    12         $hours    = floor( $offset );
    13         $minutes  = ( $offset - (int) $hours );
     11        $offset    = (float) get_option( 'gmt_offset' );
     12        $hours     = floor( $offset );
     13        $minutes   = ( $offset - (int) $hours );
    1414
    1515        // Calculate
    16         $sign     = ( $offset < 0 ) ? '-' : '+';
    17         $abs_hour = abs( $hours );
    18         $abs_mins = abs( $minutes * 60 );
    19         $timezone = sprintf( '%s%02d:%02d', $sign, $abs_hour, $abs_mins );
     16        $sign      = ( $offset < 0 ) ? '-' : '+';
     17        $abs_hour  = abs( $hours );
     18        $abs_mins  = abs( $minutes * 60 );
     19        $tz_offset = sprintf( '%s%02d:%02d', $sign, $abs_hour, $abs_mins );
    2020
    21         return $timezone;
     21        return $tz_offset;
    2222}}}
    2323