From 31400d3d7eb72b16078574e5e65fe057e37e3177 Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Mon, 30 Aug 2010 17:00:26 +1200 Subject: [PATCH] Not the whole solution, but this is more correct than the other. --- inc/RRule.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/RRule.php b/inc/RRule.php index c515d065..54aba19d 100644 --- a/inc/RRule.php +++ b/inc/RRule.php @@ -178,7 +178,7 @@ class iCalDate { * Render the date as GMT */ function RenderGMT( $fmt = 'Ymd\THis\Z' ) { - return date( $fmt, $this->_epoch ); + return gmdate( $fmt, $this->_epoch ); }