use atom_time on atom entries
This commit is contained in:
parent
f3292e68a2
commit
b86ae9de7f
2 changed files with 4 additions and 2 deletions
|
@ -485,6 +485,8 @@
|
||||||
foreach($r as $item) {
|
foreach($r as $item) {
|
||||||
$status = array(
|
$status = array(
|
||||||
'created_at'=> api_date($item['created']),
|
'created_at'=> api_date($item['created']),
|
||||||
|
'published' => datetime_convert('UTC','UTC',$item['created'],ATOM_TIME),
|
||||||
|
'updated' => datetime_convert('UTC','UTC',$item['edited'],ATOM_TIME),
|
||||||
'id' => $item['id'],
|
'id' => $item['id'],
|
||||||
'text' => strip_tags(bbcode($item['body'])),
|
'text' => strip_tags(bbcode($item['body'])),
|
||||||
'html' => bbcode($item['body']),
|
'html' => bbcode($item['body']),
|
||||||
|
|
|
@ -15,8 +15,8 @@
|
||||||
<content type="html">$status.html</content>
|
<content type="html">$status.html</content>
|
||||||
<link rel="alternate" type="text/html" href="$status.url"/>
|
<link rel="alternate" type="text/html" href="$status.url"/>
|
||||||
<activity:verb>$status.verb</activity:verb>
|
<activity:verb>$status.verb</activity:verb>
|
||||||
<published>$status.created_at</published>
|
<published>$status.published</published>
|
||||||
<updated>$status.created_at</updated>
|
<updated>$status.updated</updated>
|
||||||
|
|
||||||
<link rel="ostatus:conversation" href="$status.url"/>
|
<link rel="ostatus:conversation" href="$status.url"/>
|
||||||
<!--
|
<!--
|
||||||
|
|
Loading…
Reference in a new issue