summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-10-12 04:28:45 +0100
committerAndrew Dolgov <[email protected]>2006-10-12 04:28:45 +0100
commit6e93d7d6e4b61e0aec696a24df0cc1531f053436 (patch)
treeeca5f844601835a0b83dc8112cc6de372fd1ff33 /functions.php
parented313cdea970b1e113e80dacc229417b7ab7f3bc (diff)
feedcreator fixes
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index 97ad0c6c4..c06ab0a13 100644
--- a/functions.php
+++ b/functions.php
@@ -2383,7 +2383,8 @@
$item->title = $line["title"];
$item->description = $line["content_preview"];
$item->date = strtotime($line["updated"]);
- $item->id = $line["guid"];
+ $item->guid = $line["guid"];
+ $item->link = $line['link'];
$rss->addItem($item);
}