api compatibility fixes
This commit is contained in:
parent
b774127616
commit
1aaded10b4
2 changed files with 4 additions and 3 deletions
|
@ -723,7 +723,8 @@
|
||||||
'created_at'=> api_date($item['created']),
|
'created_at'=> api_date($item['created']),
|
||||||
'published' => datetime_convert('UTC','UTC',$item['created'],ATOM_TIME),
|
'published' => datetime_convert('UTC','UTC',$item['created'],ATOM_TIME),
|
||||||
'updated' => datetime_convert('UTC','UTC',$item['edited'],ATOM_TIME),
|
'updated' => datetime_convert('UTC','UTC',$item['edited'],ATOM_TIME),
|
||||||
'id' => $item['uri'],
|
'id' => $item['id'],
|
||||||
|
'message_id' => $item['uri'],
|
||||||
'text' => strip_tags(bbcode($item['body'])),
|
'text' => strip_tags(bbcode($item['body'])),
|
||||||
'html' => bbcode($item['body']),
|
'html' => bbcode($item['body']),
|
||||||
'source' => (($item['app']) ? $item['app'] : 'web'),
|
'source' => (($item['app']) ? $item['app'] : 'web'),
|
||||||
|
@ -773,7 +774,7 @@
|
||||||
$email = $a->config['admin_email'];
|
$email = $a->config['admin_email'];
|
||||||
$closed = (($a->config['register_policy'] == REGISTER_CLOSED) ? 'true' : 'false');
|
$closed = (($a->config['register_policy'] == REGISTER_CLOSED) ? 'true' : 'false');
|
||||||
$private = (($a->config['system']['block_public']) ? 'true' : 'false');
|
$private = (($a->config['system']['block_public']) ? 'true' : 'false');
|
||||||
$textlimit = (($a->config['max_import_size']) ? $a->config['max_import_size'] : '200000');
|
$textlimit = (string) (($a->config['max_import_size']) ? $a->config['max_import_size'] : 200000);
|
||||||
$ssl = (($a->config['system']['have_ssl']) ? 'true' : 'false');
|
$ssl = (($a->config['system']['have_ssl']) ? 'true' : 'false');
|
||||||
$sslserver = (($ssl === 'true') ? str_replace('http:','https:',$a->get_baseurl()) : '');
|
$sslserver = (($ssl === 'true') ? str_replace('http:','https:',$a->get_baseurl()) : '');
|
||||||
|
|
||||||
|
|
|
@ -53,7 +53,7 @@
|
||||||
{{ for $statuses as $status }}
|
{{ for $statuses as $status }}
|
||||||
<entry>
|
<entry>
|
||||||
<activity:object-type>$status.objecttype</activity:object-type>
|
<activity:object-type>$status.objecttype</activity:object-type>
|
||||||
<id>$status.id</id>
|
<id>$status.message_id</id>
|
||||||
<title>$status.text</title>
|
<title>$status.text</title>
|
||||||
<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"/>
|
||||||
|
|
Loading…
Reference in a new issue