]> git.mxchange.org Git - friendica.git/commitdiff
API: link to original page for feed posts
authorgerhard6380 <gerhard6380@users.noreply.github.com>
Wed, 31 May 2017 00:24:09 +0000 (02:24 +0200)
committerGitHub <noreply@github.com>
Wed, 31 May 2017 00:24:09 +0000 (02:24 +0200)
link to original page added to html output of feed posts if body is empty

include/api.php

index caf316d76ada039c03ea651eb01d3ff648f0765f..d8864a5ab3ad150a23211380caf6d4c94a5a5dea 100644 (file)
@@ -2289,6 +2289,11 @@ $called_api = null;
                        $statushtml = "<h4>" . bbcode($item['title']) . "</h4>\n" . $statushtml;
                }
 
+               // feeds without body should contain the link 
++              if (($item['network'] == NETWORK_FEED) && (strlen($item['body']) == 0)) { 
++                      $statushtml .= bbcode($item['plink']); 
++              } 
+               
                $entities = api_get_entitities($statustext, $body);
 
                return array(