Add the feed link to the body when not present in the feed

This commit is contained in:
Michael 2018-01-11 22:57:31 +00:00
parent dc45bc3c84
commit 1068091bbe
1 changed files with 2 additions and 1 deletions

View File

@ -417,7 +417,8 @@ class Feed {
}
$item["body"] .= "\n".$item['tag'];
}
if (!strstr($item["body"], '[url') && ($item['plink'] != '')) {
x // Add the link to the original feed entry if not present in feed
if (!strstr($item["body"], $item['plink']) && ($item['plink'] != '')) {
$item["body"] .= "[hr][url]".$item['plink']."[/url]";
}
}