X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fuserrss.php;h=04855cccaded30a05ac67a0789647aae8b7e882f;hb=5ec5a22dc75cb8f4d896b41ca24067c68d3e1de6;hp=d14fc523e8930e8a3e611745e98055589a5a8410;hpb=4b0cf99e56f965e10eeb8b8b19e7b405bda49eaf;p=quix0rs-gnu-social.git diff --git a/actions/userrss.php b/actions/userrss.php index d14fc523e8..04855cccad 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -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,16 @@ 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); } -} \ No newline at end of file + + function isReadOnly() + { + return true; + } +} +