From 32024bdf219f9b620cb4693b3a974b19afe00f2f Mon Sep 17 00:00:00 2001 From: Bill Bagdon Date: Sat, 8 Apr 2017 12:59:03 -0400 Subject: [PATCH] Fix the TFD filter and add Married to the sea --- plugins/af_comics/filters/af_comics_tfd.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/plugins/af_comics/filters/af_comics_tfd.php b/plugins/af_comics/filters/af_comics_tfd.php index d47c164ee..eeec28fa3 100644 --- a/plugins/af_comics/filters/af_comics_tfd.php +++ b/plugins/af_comics/filters/af_comics_tfd.php @@ -2,11 +2,12 @@ class Af_Comics_Tfd extends Af_ComicFilter { function supported() { - return array("Toothpaste For Dinner"); + return array("Toothpaste For Dinner", "Married to the Sea"); } function process(&$article) { - if (strpos($article["link"], "toothpastefordinner.com") !== FALSE) { + if (strpos($article["link"], "toothpastefordinner.com") !== FALSE || + strpos($article["link"], "marriedtothesea.com") !== FALSE) { $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)"); @@ -14,13 +15,13 @@ class Af_Comics_Tfd extends Af_ComicFilter { if (!$res) return $article; $doc = new DOMDocument(); - $doc->loadHTML($res); - + @$doc->loadHTML(fetch_file_contents($article["link"])); + $basenode = false; if ($doc) { $xpath = new DOMXPath($doc); - $basenode = $xpath->query('//img[@class="comic"]')->item(0); + $basenode = $xpath->query('//img[contains(@src, ".gif")]')->item(0); if ($basenode) { $article["content"] = $doc->saveXML($basenode);