mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-02-10 16:01:33 +00:00
move all $fetch globals to UrlHelper
This commit is contained in:
@@ -8,17 +8,14 @@ class Af_Comics_Cad extends Af_ComicFilter {
|
||||
function process(&$article) {
|
||||
if (strpos($article["link"], "cad-comic.com") !== false) {
|
||||
if (strpos($article["title"], "News:") === false) {
|
||||
|
||||
global $fetch_last_error_content;
|
||||
|
||||
$doc = new DOMDocument();
|
||||
|
||||
$res = UrlHelper::fetch($article["link"], false, false, false,
|
||||
false, false, 0,
|
||||
"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0");
|
||||
|
||||
if (!$res && $fetch_last_error_content)
|
||||
$res = $fetch_last_error_content;
|
||||
if (!$res && UrlHelper::$fetch_last_error_content)
|
||||
$res = UrlHelper::$fetch_last_error_content;
|
||||
|
||||
if (@$doc->loadHTML($res)) {
|
||||
$xpath = new DOMXPath($doc);
|
||||
|
||||
@@ -13,10 +13,8 @@ class Af_Comics_DarkLegacy extends Af_ComicFilter {
|
||||
false, false, 0,
|
||||
"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)");
|
||||
|
||||
global $fetch_last_error_content;
|
||||
|
||||
if (!$res && $fetch_last_error_content)
|
||||
$res = $fetch_last_error_content;
|
||||
if (!$res && UrlHelper::$fetch_last_error_content)
|
||||
$res = UrlHelper::$fetch_last_error_content;
|
||||
|
||||
$doc = new DOMDocument();
|
||||
|
||||
|
||||
@@ -14,10 +14,8 @@ class Af_Comics_Dilbert extends Af_ComicFilter {
|
||||
false, false, 0,
|
||||
"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0");
|
||||
|
||||
global $fetch_last_error_content;
|
||||
|
||||
if (!$res && $fetch_last_error_content)
|
||||
$res = $fetch_last_error_content;
|
||||
if (!$res && UrlHelper::$fetch_last_error_content)
|
||||
$res = UrlHelper::$fetch_last_error_content;
|
||||
|
||||
$doc = new DOMDocument();
|
||||
|
||||
|
||||
@@ -12,10 +12,8 @@ class Af_Comics_Whomp extends Af_ComicFilter {
|
||||
false, false, 0,
|
||||
"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)");
|
||||
|
||||
global $fetch_last_error_content;
|
||||
|
||||
if (!$res && $fetch_last_error_content)
|
||||
$res = $fetch_last_error_content;
|
||||
if (!$res && UrlHelper::$fetch_last_error_content)
|
||||
$res = UrlHelper::$fetch_last_error_content;
|
||||
|
||||
$doc = new DOMDocument();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user