diff options
-rw-r--r-- | inc/feedcreator.class.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/feedcreator.class.php b/inc/feedcreator.class.php index 8fe69ba1f..bbe3220e1 100644 --- a/inc/feedcreator.class.php +++ b/inc/feedcreator.class.php @@ -59,7 +59,7 @@ * See www.bitfolge.de for additional changelog info */ // your local timezone, set to "" to disable or for GMT -define("TIME_ZONE",""); +define("TIME_ZONE",date("O", time())); @@ -740,8 +740,8 @@ class FeedDate { */ function iso8601() { $date = gmdate("Y-m-d\TH:i:sO",$this->unix); + if (TIME_ZONE!="") $date = str_replace("+0000",TIME_ZONE,$date); $date = substr($date,0,22) . ':' . substr($date,-2); - if (TIME_ZONE!="") $date = str_replace("+00:00",TIME_ZONE,$date); return $date; } |