Not the whole solution, but this is more correct than the other.

This commit is contained in:
Andrew McMillan 2010-08-30 17:00:26 +12:00
parent a38c0e33cb
commit 31400d3d7e

View File

@ -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 );
}