]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
small bugfix, it's prepare() not initialize()
authorRobin Millette <millette@controlyourself.ca>
Fri, 23 Jan 2009 04:03:04 +0000 (04:03 +0000)
committerRobin Millette <millette@plantard.controlezvous.ca>
Fri, 23 Jan 2009 04:03:04 +0000 (04:03 +0000)
actions/allrss.php

index e357d12f02a917de824159d7188ccc01e76ba944..248f59f4386826b810d0b2b1f73acc5f604575a5 100644 (file)
@@ -49,7 +49,6 @@ require_once INSTALLDIR.'/lib/rssaction.php';
  */
 class AllrssAction extends Rss10Action
 {
-
     var $user = null;
 
     /**
@@ -57,8 +56,9 @@ class AllrssAction extends Rss10Action
      * 
      * @return boolean false if user doesn't exist
      */
-    function init()
+    function prepare($args)
     {
+        parent::prepare($args);
         $nickname   = $this->trimmed('nickname');
         $this->user = User::staticGet('nickname', $nickname);