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

2022.09-rc
Michael 2018-01-11 22:57:31 +00:00
rodzic dc45bc3c84
commit 1068091bbe
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -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]";
}
}