3
1
Back

. $article['content']; } // Least I Could Do (wtf image size?) $xpath = $this->get_xpath_dealie($article['link']); $article['content'] = $this->get_img_tags($xpath, '(//div[@id="comic"]//img)', $article); } // Drugs and Wires elseif (strpos($article["link"], "explosm.net/comics") !== FALSE) { $article['content'] = $this->get_img_tags($xpath, "//div[@class='comic-wrap']//img[@class='comic']", $article); elseif (strpos($article['link'], 'threepanelsoul.com/2') !== FALSE) { } //Sites that provide images and just need alt tags textified. Elseif (strpos($article['content'], 'invisiblebread.com/2') !== FALSE) { $article['content'] = $img_tag . $article['content']; } // Dilbert elseif (strpos($article['link'], 'cad-comic.com/cad/') !== FALSE) .

New Pull Request