From cc71f1ae826cc7c186f38ac902d963dc8f65caeb Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 3 Aug 2010 15:55:40 -0700 Subject: [PATCH] output Atom dates in UTC --- classes/Notice.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/classes/Notice.php b/classes/Notice.php index 61844d487e..b849225fdb 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -1242,7 +1242,7 @@ class Notice extends Memcached_DataObject $notice = $profile->getCurrentNotice(); if (!empty($notice)) { - $xs->element('updated', null, common_date_w3dtf($notice->created)); + $xs->element('updated', null, self::utcDate($notice->created)); } $user = User::staticGet('id', $profile->id); @@ -1307,7 +1307,7 @@ class Notice extends Memcached_DataObject Event::handle('EndActivityId', array(&$this, &$xs, $id)); } - $published = common_date_w3dtf($this->created); + $published = self::utcDate($this->created); if (Event::handle('StartActivityPublished', array(&$this, &$xs, &$published))) { $xs->element('published', null, $published); @@ -2055,4 +2055,11 @@ class Notice extends Memcached_DataObject $tag->free(); return $tags; } + + static private function utcDate($dt) + { + $dateStr = date('d F Y H:i:s', strtotime($dt)); + $d = new DateTime($dateStr, new DateTimeZone('UTC')); + return $d->format(DATE_W3C); + } }