From 526e1d80be3fe843798c4e26964e10e25a48ae7a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 5 Mar 2014 18:34:13 +0400 Subject: [PATCH] get_feeds_from_html: add rel='alternate feed' --- include/functions2.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/functions2.php b/include/functions2.php index 4e979614..60c3fe59 100644 --- a/include/functions2.php +++ b/include/functions2.php @@ -1779,7 +1779,7 @@ $doc->loadHTML($content); $xpath = new DOMXPath($doc); $entries = $xpath->query('/html/head/link[@rel="alternate" and '. - '(contains(@type,"rss") or contains(@type,"atom"))]|/html/head/link[@rel="feed"]'); + '(contains(@type,"rss") or contains(@type,"atom"))]|/html/head/link[@rel="feed" or @rel="alternate feed"]'); $feedUrls = array(); foreach ($entries as $entry) { if ($entry->hasAttribute('href')) { -- 2.39.5