Make allrss.php work with phpcs

This commit is contained in:
Evan Prodromou 2009-02-23 13:27:22 -08:00
parent cab322d21b
commit 8c3fe83c64
1 changed files with 6 additions and 8 deletions

View File

@ -53,7 +53,9 @@ class AllrssAction extends Rss10Action
/** /**
* Initialization. * Initialization.
* *
* @param array $args Web and URL arguments
*
* @return boolean false if user doesn't exist * @return boolean false if user doesn't exist
*/ */
function prepare($args) function prepare($args)
@ -81,7 +83,7 @@ class AllrssAction extends Rss10Action
{ {
$user = $this->user; $user = $this->user;
$notice = $user->noticesWithFriends(0, $limit); $notice = $user->noticesWithFriends(0, $limit);
while ($notice->fetch()) { while ($notice->fetch()) {
$notices[] = clone($notice); $notices[] = clone($notice);
} }
@ -104,7 +106,8 @@ class AllrssAction extends Rss10Action
'link' => common_local_url('all', 'link' => common_local_url('all',
array('nickname' => array('nickname' =>
$user->nickname)), $user->nickname)),
'description' => sprintf(_('Feed for friends of %s'), $user->nickname)); 'description' => sprintf(_('Feed for friends of %s'),
$user->nickname));
return $c; return $c;
} }
@ -123,10 +126,5 @@ class AllrssAction extends Rss10Action
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE); $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
return $avatar ? $avatar->url : null; return $avatar ? $avatar->url : null;
} }
function isReadOnly()
{
return true;
}
} }