]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/rssaction.php
Profile block base style
[quix0rs-gnu-social.git] / lib / rssaction.php
index 5a430282fb0a8f967a3ee137b3ad5cfddf80dd2e..f4b5b62d8204e8cf7f83ef9726e5da6bd640d7d7 100644 (file)
@@ -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,7 +158,6 @@ 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);
                        if ($profile->fullname) {
@@ -169,7 +172,6 @@ class Rss10Action extends Action {
 
        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');