foreach (array_reverse($entrylist) AS $entry) {
$item = array_merge($header, $author);
+ $alternate = $xpath->query("atom:link[@rel='alternate']", $entry)->item(0)->attributes;
+ if (!is_object($alternate))
+ $alternate = $xpath->query("atom:link", $entry)->item(0)->attributes;
+
if (is_object($alternate))
foreach($alternate AS $attributes)
if ($attributes->name == "href")
if ($item["title"] == "")
$item["title"] = $xpath->evaluate('rss:title/text()', $entry)->item(0)->nodeValue;
- $alternate = $xpath->query("atom:link[@rel='alternate']", $entry)->item(0)->attributes;
- if (!is_object($alternate))
- $alternate = $xpath->query("atom:link", $entry)->item(0)->attributes;
-
$published = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue;
if ($published == "")