1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 15:45:56 +00:00

af_unburn: add feedsportal

This commit is contained in:
Andrew Dolgov
2013-01-14 11:11:03 +04:00
parent 6a05f1ad72
commit eb161344c2

View File

@@ -23,7 +23,8 @@ class Af_Unburn extends Plugin {
if (!function_exists("curl_init"))
return $article;
if (strpos($article["link"], "feedproxy.google.com") !== FALSE &&
if ((strpos($article["link"], "feedproxy.google.com") !== FALSE ||
strpos($article["link"], "feedsportal.com") !== FALSE) &&
strpos($article["guid"], "unburn,$owner_uid:") === FALSE) {
$ch = curl_init($article["link"]);