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

fix toothpastefordinner valiant efforts to prevent scraping

This commit is contained in:
Andrew Dolgov
2015-06-18 08:28:54 +03:00
parent 6c9f3d4a60
commit 5613bb3584

View File

@@ -6,12 +6,15 @@ class Af_Comics_Tfd extends Af_ComicFilter {
}
function process(&$article) {
$owner_uid = $article["owner_uid"];
if (strpos($article["link"], "toothpastefordinner.com") !== FALSE) {
$doc = new DOMDocument();
$res = fetch_file_contents($article["link"], false, false, false,
false, false, 0,
"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)");
@$doc->loadHTML(fetch_file_contents($article["link"]));
if (!$res) return $article;
$doc = new DOMDocument();
$doc->loadHTML($res);
$basenode = false;