summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-03-08 19:04:54 +0300
committerAndrew Dolgov <[email protected]>2011-03-08 19:04:54 +0300
commit530f5cdafa7aa00056dc7807869f569933d349c6 (patch)
tree15cadd59115f25cb88390707f98026022b9b256a /functions.php
parentec320224dbf4b3224245f298bac3145ba139d19a (diff)
allow rdf:about as a guid source
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/functions.php b/functions.php
index e0974725f..c60cb00b6 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"]);
}