From: Andrew Dolgov Date: Tue, 8 Mar 2011 16:04:54 +0000 (+0300) Subject: allow rdf:about as a guid source X-Git-Tag: 1.5.2~21 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=530f5cdafa7aa00056dc7807869f569933d349c6;p=tt-rss.git allow rdf:about as a guid source --- diff --git a/functions.php b/functions.php index e0974725..c60cb00b 100644 --- a/functions.php +++ b/functions.php @@ -817,6 +817,7 @@ $entry_guid = $item["id"]; if (!$entry_guid) $entry_guid = $item["guid"]; + if (!$entry_guid) $entry_guid = $item["about"]; if (!$entry_guid) $entry_guid = $item["link"]; if (!$entry_guid) $entry_guid = make_guid_from_title($item["title"]); }