I would like to propose that a feature is added to Drupal to allow it to handle Daylight Saving. For example, an "automatically adjust to daylight saving" checkbox could be added to admin/settings and this will tell the system to add 1 hour to the system time during dates when DST is applicable.

Comments

stefano@tipic.com’s picture

I fixed daylight saving on my Drupal installation by patching format_date():

function format_date($timestamp, $type = 'medium', $format = '', $timezone = NULL) {
  // patch for daylight saving
  $timestamp += date('I', $timestamp)*3600;
  .............................
webernet’s picture

Status: Active » Closed (duplicate)