diff options
author | Christian Weiske <cweiske@cweiske.de> | 2012-01-20 14:58:16 +0100 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2012-01-20 14:58:16 +0100 |
commit | 87f495d31b8f40375a6a1bf05a6d2bc9860029c3 (patch) | |
tree | 62ada51a7ae19070a2203e8599bbd1e2a04a6587 /www/rss.php | |
parent | cf80b6c5b8eef1761d1e9063e44b7449a63ad2d0 (diff) | |
download | semanticscuttle-87f495d31b8f40375a6a1bf05a6d2bc9860029c3.tar.gz semanticscuttle-87f495d31b8f40375a6a1bf05a6d2bc9860029c3.tar.bz2 |
Part of bug #3463481: add guid to items
Diffstat (limited to 'www/rss.php')
-rw-r--r-- | www/rss.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/rss.php b/www/rss.php index 46c0ffd..3628a2e 100644 --- a/www/rss.php +++ b/www/rss.php @@ -137,6 +137,7 @@ $bookmarks_tmp = filter($bookmarks['bookmarks']); $bookmarks_tpl = array(); $latestdate = null; +$guidBaseUrl = addProtocolToUrl(ROOT) . '#'; foreach ($bookmarks_tmp as $key => $row) { $_link = $row['bAddress']; // Redirection option @@ -154,7 +155,8 @@ foreach ($bookmarks_tmp as $key => $row) { 'description' => $row['bDescription'], 'creator' => SemanticScuttle_Model_UserArray::getName($row), 'pubdate' => $_pubdate, - 'tags' => $row['tags'] + 'tags' => $row['tags'], + 'guid' => $guidBaseUrl . $row['bId'], ); } unset($bookmarks_tmp); |