aboutsummaryrefslogtreecommitdiffstats
path: root/include/items.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-09-24 01:45:57 -0700
committerfriendica <info@friendica.com>2014-09-24 01:45:57 -0700
commit87b8e2725c454b9ddeb15836301736d366ff8482 (patch)
treebc264e051a12934cc41c30a113fafd3bbb14e38d /include/items.php
parentf6269e208278a9263f9e2633e35cb7b8e3c13709 (diff)
downloadvolse-hubzilla-87b8e2725c454b9ddeb15836301736d366ff8482.tar.gz
volse-hubzilla-87b8e2725c454b9ddeb15836301736d366ff8482.tar.bz2
volse-hubzilla-87b8e2725c454b9ddeb15836301736d366ff8482.zip
just an experiment - don't do anything with this until I'm finished with it.
Diffstat (limited to 'include/items.php')
-rwxr-xr-xinclude/items.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php
index d972a1ce9..c5fc14a09 100755
--- a/include/items.php
+++ b/include/items.php
@@ -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);