Hello,
During installation I get to select timezone, Venezuela's new timezone as of December is -4:30
Better 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.
+1
The venezuelan timezone (and other timezones not included so far) should be supported.
How 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,
We really need to fix that. Drupal 7 timezone support is handled by PHP, and it is not affected by this.
And tagging as novice.
Here's a patch that adds -4.5 to the $zonelist array.
-4.5 should come before -4, not after
D'oh! Here's a revised version.
does what it says on the can
Thanks, committed to Drupal 6. Needs to be ported to Drupal 5, right?
Committing to D5.
Drupal 5 has a -2.5 too. It should be added to D6.
Committed to Drupal 6, thanks.
Automatically closed -- issue fixed for 2 weeks with no activity.
#1
Better 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.
#2
#3
+1
The venezuelan timezone (and other timezones not included so far) should be supported.
#4
How 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,
#5
We really need to fix that. Drupal 7 timezone support is handled by PHP, and it is not affected by this.
#6
And tagging as novice.
#7
Here's a patch that adds -4.5 to the $zonelist array.
#8
-4.5 should come before -4, not after
#9
D'oh! Here's a revised version.
#10
does what it says on the can
#11
Thanks, committed to Drupal 6. Needs to be ported to Drupal 5, right?
#12
Committing to D5.
Drupal 5 has a -2.5 too. It should be added to D6.
#13
Committed to Drupal 6, thanks.
#14
Automatically closed -- issue fixed for 2 weeks with no activity.