From eb4185e92e7435daed7a94ea86b8d3ddeab5dcaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20J=2E=20G=C3=B3mez?= Date: Mon, 12 Mar 2018 13:04:36 -0400 Subject: [PATCH] CRM-21667: Fix for timezone handoff from Drupal6 should take DST into account --- CRM/Utils/System/Drupal6.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Utils/System/Drupal6.php b/CRM/Utils/System/Drupal6.php index 967831916a99..df8eec7568ca 100644 --- a/CRM/Utils/System/Drupal6.php +++ b/CRM/Utils/System/Drupal6.php @@ -763,7 +763,7 @@ public function getTimeZoneString() { // to the doc for the overridden method, ought to be returned as a region string // (e.g., America/Havana). if (strlen($timezone)) { - $timezone = timezone_name_from_abbr("", (int) $timezone, 0); + $timezone = timezone_name_from_abbr("", (int) $timezone); } if (!$timezone) {