summaryrefslogtreecommitdiff
path: root/actions/allrss.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/allrss.php')
-rw-r--r--actions/allrss.php12
1 files changed, 8 insertions, 4 deletions
diff --git a/actions/allrss.php b/actions/allrss.php
index 851cd0ad5..9c20cd416 100644
--- a/actions/allrss.php
+++ b/actions/allrss.php
@@ -27,7 +27,8 @@ class AllrssAction extends Rss10Action {
var $user = null;
- function init() {
+ function init()
+ {
$nickname = $this->trimmed('nickname');
$this->user = User::staticGet('nickname', $nickname);
@@ -39,7 +40,8 @@ class AllrssAction extends Rss10Action {
}
}
- function get_notices($limit=0) {
+ function get_notices($limit=0)
+ {
$user = $this->user;
@@ -52,7 +54,8 @@ class AllrssAction extends Rss10Action {
return $notices;
}
- function get_channel() {
+ function get_channel()
+ {
$user = $this->user;
$c = array('url' => common_local_url('allrss',
array('nickname' =>
@@ -65,7 +68,8 @@ class AllrssAction extends Rss10Action {
return $c;
}
- function get_image() {
+ function get_image()
+ {
$user = $this->user;
$profile = $user->getProfile();
if (!$profile) {