Page MenuHomePhabricator

D12772.id30697.diff
No OneTemporary

D12772.id30697.diff

diff --git a/src/applications/calendar/storage/PhabricatorCalendarEvent.php b/src/applications/calendar/storage/PhabricatorCalendarEvent.php
--- a/src/applications/calendar/storage/PhabricatorCalendarEvent.php
+++ b/src/applications/calendar/storage/PhabricatorCalendarEvent.php
@@ -62,7 +62,7 @@
$this->setDateFrom(
$this->getDateEpochForTimeZone(
$this->getDateFrom(),
- new DateTimeZone('GMT+12'),
+ new DateTimeZone('Pacific/Kiritimati'),
'Y-m-d',
null,
$zone));
@@ -70,7 +70,7 @@
$this->setDateTo(
$this->getDateEpochForTimeZone(
$this->getDateTo(),
- new DateTimeZone('GMT-12'),
+ new DateTimeZone('Pacific/Midway'),
'Y-m-d 23:59:59',
'-1 day',
$zone));
@@ -102,7 +102,7 @@
$zone,
'Y-m-d',
null,
- new DateTimeZone('GMT+12')));
+ new DateTimeZone('Pacific/Kiritimati')));
$this->setDateTo(
$this->getDateEpochForTimeZone(
@@ -110,7 +110,7 @@
$zone,
'Y-m-d',
'+1 day',
- new DateTimeZone('GMT-12')));
+ new DateTimeZone('Pacific/Midway')));
return $this;
}
diff --git a/test.php b/test.php
new file mode 100644
--- /dev/null
+++ b/test.php
@@ -0,0 +1,17 @@
+<?php
+
+date_default_timezone_set('UTC');
+$list = timezone_identifiers_list();
+
+// var_dump($list);
+
+$map = array();
+
+foreach ($list as $zone) {
+ $timezone = new DateTimeZone($zone);
+ $date_time = new DateTime('@'.time());
+ $map[$zone] = $timezone->getOffset($date_time);
+}
+
+asort($map);
+var_dump($map);

File Metadata

Mime Type
text/plain
Expires
Wed, Apr 2, 10:37 PM (3 d, 10 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7387674
Default Alt Text
D12772.id30697.diff (1 KB)

Event Timeline