X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Frssaction.php;h=f4b5b62d8204e8cf7f83ef9726e5da6bd640d7d7;hb=2abe10b8ea4b5d69fc7f6513bf465541454ca2cf;hp=2f6fa005ac87cd9c7e31e08eb66dbb1c8f03fe65;hpb=31bb9d07dcaf72ef3c913728464c1a86aa1238cb;p=quix0rs-gnu-social.git diff --git a/lib/rssaction.php b/lib/rssaction.php index 2f6fa005ac..f4b5b62d82 100644 --- a/lib/rssaction.php +++ b/lib/rssaction.php @@ -29,7 +29,7 @@ class Rss10Action extends Action { function is_readonly() { return true; } - + function handle($args) { parent::handle($args); $limit = (int) $this->trimmed('limit'); @@ -60,6 +60,10 @@ class Rss10Action extends Action { function show_rss($limit=0) { + if (!$this->init()) { + return; + } + $notices = $this->get_notices($limit); $this->init_rss(); @@ -154,9 +158,8 @@ class Rss10Action extends Action { foreach ($this->creators as $uri => $profile) { $id = $profile->id; $nickname = $profile->nickname; - common_element_start('sioc:User', array('rdf:about' => $uri)); - common_element('foaf:nick', NULL, $nickname); + common_element('foaf:nick', NULL, $nickname); if ($profile->fullname) { common_element('foaf:name', NULL, $profile->fullname); } @@ -166,10 +169,9 @@ class Rss10Action extends Action { common_element_end('sioc:User'); } } - + function init_rss() { $channel = $this->get_channel(); - header('Content-Type: application/rdf+xml'); common_start_xml(); @@ -190,7 +192,6 @@ class Rss10Action extends Action { 'xmlns:laconica' => 'http://laconi.ca/ont/', 'xmlns' => 'http://purl.org/rss/1.0/')); - common_element_start('sioc:Site', array('rdf:about' => common_root_url())); common_element('sioc:name', NULL, common_config('site', 'name')); common_element_start('sioc:container_of');