get_feeds_from_html: add rel='alternate feed'

This commit is contained in:
Andrew Dolgov 2014-03-05 18:34:13 +04:00
parent cacc187732
commit 526e1d80be
1 changed files with 1 additions and 1 deletions

View File

@ -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')) {