summaryrefslogtreecommitdiff
path: root/actions/allrss.php
diff options
context:
space:
mode:
authorRobin Millette <millette@controlyourself.ca>2009-01-23 04:03:04 +0000
committerRobin Millette <millette@plantard.controlezvous.ca>2009-01-23 04:03:04 +0000
commit1e1a24d8c11479da877e130dd6bf1a9ffc0a4aba (patch)
tree09ccb7b52c6cf90d35f496e3d906f2ef4691d514 /actions/allrss.php
parentc8b606f17e124febf79db5a5aac5c545454435a1 (diff)
small bugfix, it's prepare() not initialize()
Diffstat (limited to 'actions/allrss.php')
-rw-r--r--actions/allrss.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/allrss.php b/actions/allrss.php
index e357d12f0..248f59f43 100644
--- a/actions/allrss.php
+++ b/actions/allrss.php
@@ -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);