diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-22 14:44:34 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-22 14:44:34 -0400 |
commit | 139fd492ff636581d525d576eead1796c37da155 (patch) | |
tree | 396c69c5131ffa2accc38df4b91b24a5388001e2 | |
parent | 7979176e14444af7b88f6a7afeae571d6a644d17 (diff) |
use notice URIs in RSS feeds
darcs-hash:20080522184434-84dde-0d698f3e34301c2a5600ce5e828db4402d070808.gz
-rw-r--r-- | lib/rssaction.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rssaction.php b/lib/rssaction.php index 9d4066ee5..3b39a7031 100644 --- a/lib/rssaction.php +++ b/lib/rssaction.php @@ -108,7 +108,7 @@ class Rss10Action extends Action { function show_item($notice) { $nurl = common_local_url('shownotice', array('notice' => $notice->id)); - common_element_start('item', array('rdf:about' => $nurl)); + common_element_start('item', array('rdf:about' => $notice->uri)); common_element('title', NULL, $notice->created); common_element('link', NULL, $nurl); common_element('description', NULL, common_render_content($notice->content)); |