uiredesign

This commit is contained in:
Robin Millette 2009-01-23 04:10:49 +00:00 committed by Robin Millette
parent 3f328256bd
commit 4c58e6b312

View File

@ -28,8 +28,9 @@ class UserrssAction extends Rss10Action
var $user = null;
function init()
function prepare($args)
{
parent::prepare($args);
$nickname = $this->trimmed('nickname');
$this->user = User::staticGet('nickname', $nickname);
@ -41,7 +42,7 @@ class UserrssAction extends Rss10Action
}
}
function get_notices($limit=0)
function getNotices($limit=0)
{
$user = $this->user;
@ -59,7 +60,7 @@ class UserrssAction extends Rss10Action
return $notices;
}
function get_channel()
function getChannel()
{
$user = $this->user;
$profile = $user->getProfile();
@ -72,7 +73,7 @@ class UserrssAction extends Rss10Action
return $c;
}
function get_image()
function getImage()
{
$user = $this->user;
$profile = $user->getProfile();
@ -87,10 +88,11 @@ class UserrssAction extends Rss10Action
# override parent to add X-SUP-ID URL
function init_rss($limit=0)
function initRss($limit=0)
{
$url = common_local_url('sup', null, $this->user->id);
header('X-SUP-ID: '.$url);
parent::init_rss($limit);
parent::initRss($limit);
}
}
}