thruthesky / withcenter-office-management

Withcenter Office Management
1 stars 2 forks source link

timezone support for greater than +12tz and less than -11tz #83

Closed lancelynyrd closed 5 years ago

lancelynyrd commented 5 years ago

@temporary fix

public function timezone_offset_country( $timezone_offset ) {
            ..........
    if ( ! $timezone_offset ) return '';
    **if ( $timezone_offset > 12 ) $timezone_offset = 12;
    if ( $timezone_offset < -11 ) $timezone_offset = 11;**
            .........
}

public function get_user_timezone_offset_by_ID($user_id) {
        ............
        **if ($tz > 12) $tz = 12;
        if ($tz < -11) $tz = -11;**
        ............
}