summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain d'Alverny <rdalverny@gmail.com>2022-01-11 18:56:33 +0100
committerRomain d'Alverny <rdalverny@gmail.com>2022-01-11 18:56:33 +0100
commitbeef838f514a37fa97936e4d9c9f718b69d95ce5 (patch)
tree313c75d71dff768ab87da2b7d4c161195da17965
parent0b24df121ce7a2c3729103e7210ec970f5be82b8 (diff)
downloadplanet-beef838f514a37fa97936e4d9c9f718b69d95ce5.tar
planet-beef838f514a37fa97936e4d9c9f718b69d95ce5.tar.gz
planet-beef838f514a37fa97936e4d9c9f718b69d95ce5.tar.bz2
planet-beef838f514a37fa97936e4d9c9f718b69d95ce5.tar.xz
planet-beef838f514a37fa97936e4d9c9f718b69d95ce5.zip
Adjust Atom feed dates timezone, entry.id
-rw-r--r--atom.php12
1 files changed, 5 insertions, 7 deletions
diff --git a/atom.php b/atom.php
index 3bb3bdf..3b759e9 100644
--- a/atom.php
+++ b/atom.php
@@ -20,22 +20,20 @@ echo '<?xml version="1.0" encoding="UTF-8" ?>';
<id><?=$PlanetConfig->getUrl()?></id>
<link rel="self" type="application/atom+xml" href="<?=$PlanetConfig->getUrl()?>atom.php" />
<link rel="alternate" type="text/html" href="<?=$PlanetConfig->getUrl()?>" />
- <updated><?=date("Y-m-d\TH:i:s\Z")?></updated>
+ <updated><?=gmdate('Y-m-d\TH:i:s\Z')?></updated>
<author><name><?=htmlspecialchars($PlanetConfig->getName())?></name></author>
-
<?php $count = 0; ?>
<?php foreach ($items as $item) : ?>
+
<entry>
<title type="html"><?=htmlspecialchars($item->get_feed()->getName())?> : <?=htmlspecialchars($item->get_title())?></title>
- <id><?=htmlspecialchars($item->get_permalink())?></id>
+ <id><?=htmlspecialchars($item->get_id())?></id>
<link rel="alternate" href="<?=htmlspecialchars($item->get_permalink())?>"/>
- <published><?=$item->get_date('Y-m-d\\TH:i:s+00:00')?></published>
- <updated><?=$item->get_date('Y-m-d\\TH:i:s+00:00')?></updated>
+ <published><?=$item->get_gmdate('Y-m-d\TH:i:s\Z')?></published>
+ <updated><?=$item->get_gmdate('Y-m-d\TH:i:s\Z')?></updated>
<author><name><?=($item->get_author() ? $item->get_author()->get_name() : 'anonymous')?></name></author>
-
<content type="html"><![CDATA[<?=$item->get_content()?>]]></content>
</entry>
-
<?php if (++$count == $limit) {
break;
} ?>