just an experiment - don't do anything with this until I'm finished with it.

This commit is contained in:
friendica 2014-09-24 01:45:57 -07:00
parent f6269e2082
commit 87b8e2725c
2 changed files with 10 additions and 1 deletions

View File

@ -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);

View File

@ -1 +1 @@
2014-09-23.807
2014-09-24.808