Closed (fixed)
Project:
Drupal core
Version:
6.x-dev
Component:
other
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
2 Mar 2008 at 04:49 UTC
Updated:
2 Jan 2014 at 23:45 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
dmitrig01 commentedBetter report:
During installation, you are asked to select a timezone. Currently, that dropdown doesn't show any half-hour timezones. As of December, 2007, Venezuela is GMT/UTC-0430, which is a half-hour timezone.
Comment #2
ztyx commentedComment #3
yan commented+1
The venezuelan timezone (and other timezones not included so far) should be supported.
Comment #4
mokhin commentedHow to fix it:
function _system_zonelist() in modules/system/system.module misses the entry for Venezuela.
$zonelist = array(-11, -10, -9.5, -9, -8, -7, -6, -5, -4, -3.5, -3, -2, -1, 0, 1, 2, 3, 3.5, 4, 5, 5.5, 5.75, 6, 6.5, 7, 8, 9, 9.5, 10, 10.5, 11, 11.5, 12, 12.75, 13, 14);
Venezuelan time is -4.5, missing in the array,
Comment #5
damien tournoud commentedWe really need to fix that. Drupal 7 timezone support is handled by PHP, and it is not affected by this.
Comment #6
damien tournoud commentedAnd tagging as novice.
Comment #7
JuliaKM commentedHere's a patch that adds -4.5 to the $zonelist array.
Comment #8
dmitrig01 commented-4.5 should come before -4, not after
Comment #9
JuliaKM commentedD'oh! Here's a revised version.
Comment #10
lambic commenteddoes what it says on the can
Comment #11
gábor hojtsyThanks, committed to Drupal 6. Needs to be ported to Drupal 5, right?
Comment #12
drummCommitting to D5.
Drupal 5 has a -2.5 too. It should be added to D6.
Comment #13
gábor hojtsyCommitted to Drupal 6, thanks.