3
1
Back

#7 Cumulative fixes from v1.1 ttrss-plugin- _comics/init.php 478 lines elseif (strpos($article["content"], "//www.vgcats.com/comics/?strip_id=") !== FALSE) { $xpath = $this->get_xpath_dealie($article['link']); $article['content'] = $this->get_img_tags($xpath, "//figure[@class='photo-hires-item']//img", $article); } // Dilbert elseif (strpos($article['link'], 'girlswithslingshots.com/comic/') !== FALSE) { if ($img->getAttribute('title')) { $article['content'] .= "

$orig_content

"; //also append the blarg post because that's small, interesting, //and sometimes necessary for old fogeys like me to get what game it's about } // Timothy Winchester (People I Know elseif (strpos($article['link'], 'questionablecontent') !== FALSE) { $article['content'] .= "
ID: " . $img->getAttribute('title') . ""; } } $entries = $xpath->query("//div[@id='blarg']/div[last()]"); // Scenes From A Multiverse (to get alt tag elseif (strpos($article['link'], 'breakingcatnews.com/comic/') !== FALSE) { $xpath = $this->get_xpath_dealie($article['link']); $article['content'] = preg_replace('#(/[0-9-]+)-150x150\.gif#', '$1.gif', $article['content']); $article['content'] = $this->get_img_tags($xpath, "//div[@id='comic']//img", $article); } // Dinosaur Comics.

New Pull Request