Closed lancelynyrd closed 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;** ............ }
@temporary fix