]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/publicrss.php
More space for the counter
[quix0rs-gnu-social.git] / actions / publicrss.php
index fa86de1d96edaaa8167f59676effaf109bd63d1e..822bc2db7618703d6b4221558c73b417bf16cfbf 100644 (file)
@@ -23,13 +23,16 @@ require_once(INSTALLDIR.'/lib/rssaction.php');
 
 // Formatting of RSS handled by Rss10Action
 
-class PublicrssAction extends Rss10Action {
+class PublicrssAction extends Rss10Action
+{
 
-    function init() {
+    function init()
+    {
         return true;
     }
 
-    function get_notices($limit=0) {
+    function get_notices($limit=0)
+    {
         
         $notices = array();
         
@@ -42,7 +45,8 @@ class PublicrssAction extends Rss10Action {
         return $notices;
     }
 
-    function get_channel() {
+    function get_channel()
+    {
         global $config;
         $c = array('url' => common_local_url('publicrss'),
                    'title' => sprintf(_('%s Public Stream'), $config['site']['name']),
@@ -51,7 +55,8 @@ class PublicrssAction extends Rss10Action {
         return $c;
     }
 
-    function get_image() {
-        return NULL;
+    function get_image()
+    {
+        return null;
     }
 }
\ No newline at end of file