From 530f5cdafa7aa00056dc7807869f569933d349c6 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 8 Mar 2011 19:04:54 +0300 Subject: [PATCH] allow rdf:about as a guid source --- functions.php | 1 + 1 file changed, 1 insertion(+) 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"]); } -- 2.39.5