just an experiment - don't do anything with this until I'm finished with it.
This commit is contained in:
parent
f6269e2082
commit
87b8e2725c
@ -1581,6 +1581,15 @@ function get_atom_elements($feed,$item,&$author) {
|
||||
$res['body'] = escape_tags($res['body']);
|
||||
}
|
||||
|
||||
if(get_config('system','feedlinks')) {
|
||||
if($res['plink'] && $res['title']) {
|
||||
$res['body'] = '[url=' . $res['plink'] . ']' . $res['title'] . '[/url]' . "\n\n" . $res['body'];
|
||||
}
|
||||
elseif($res['plink']) {
|
||||
$res['body'] = '[url]' . $res['plink'] . '[/url]' . "\n\n" . $res['body'];
|
||||
}
|
||||
}
|
||||
|
||||
$private = $item->get_item_tags(NAMESPACE_DFRN,'private');
|
||||
if($private && intval($private[0]['data']) > 0)
|
||||
$res['item_private'] = ((intval($private[0]['data'])) ? 1 : 0);
|
||||
|
@ -1 +1 @@
|
||||
2014-09-23.807
|
||||
2014-09-24.808
|
||||
|
Reference in New Issue
Block a user