Skip to content

Commit

Permalink
Merge pull request #11800 from GinkgoFJG/patch-2
Browse files Browse the repository at this point in the history
CRM-21667: Fix for timezone handoff from Drupal6 should take DST into account.
  • Loading branch information
colemanw authored Mar 12, 2018
2 parents 1937e8f + eb4185e commit 626c36a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Utils/System/Drupal6.php
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 626c36a

Please sign in to comment.