summaryrefslogtreecommitdiff
path: root/lib/rssaction.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-12-12 14:55:20 -0500
committerEvan Prodromou <evan@prodromou.name>2008-12-12 14:55:20 -0500
commitfe932da97134b458f37e2ad13ce484485c56b0db (patch)
tree7c521f65d6c1e97802b337bfd08afc3930ed1c68 /lib/rssaction.php
parent6a54572577210d4b5df585169e2d61a6683deb71 (diff)
remove content:items from rss output
darcs-hash:20081212195520-84dde-d464ee28ab9a9757b889fad437e310056f4c576a.gz
Diffstat (limited to 'lib/rssaction.php')
-rw-r--r--lib/rssaction.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/rssaction.php b/lib/rssaction.php
index f4b5b62d8..e72871556 100644
--- a/lib/rssaction.php
+++ b/lib/rssaction.php
@@ -132,24 +132,6 @@ class Rss10Action extends Action {
common_element('sioc:has_creator', array('rdf:resource' => $creator_uri));
common_element('laconica:postIcon', array('rdf:resource' => common_profile_avatar_url($profile)));
common_element('cc:licence', array('rdf:resource' => common_config('license', 'url')));
- common_element_start('content:items');
- common_element_start('rdf:Bag');
- common_element_start('rdf:li');
- common_element_start('content:item');
- common_element('content:format', array('rdf:resource' =>
- 'http://www.w3.org/1999/xhtml'));
- common_text($notice->rendered);
- common_element_end('content:item');
- common_element_end('rdf:li');
- common_element_start('rdf:li');
- common_element_start('content:item');
- common_element('content:format', array('rdf:resource' =>
- 'http://www.isi.edu/in-notes/iana/assignments/media-types/text/plain'));
- common_text(common_xml_safe_str($notice->content));
- common_element_end('content:item');
- common_element_end('rdf:li');
- common_element_end('rdf:Bag');
- common_element_end('content:items');
common_element_end('item');
$this->creators[$creator_uri] = $profile;
}