X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fuserrss.php;h=cf7d18ca88c8b9c9867ba4e1e5c90ed58b71c2b0;hb=ad651c35353021d05ef4a013e57c17d0b885c5dc;hp=77bd316b2d1d3f5a61d95513c6bf8e070a23d4c5;hpb=4ada86560c7c9ef43e41e6c3cdf279d64ea132ba;p=quix0rs-gnu-social.git diff --git a/actions/userrss.php b/actions/userrss.php index 77bd316b2d..cf7d18ca88 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -41,9 +41,9 @@ class UserrssAction extends Rss10Action return false; } else { if (!empty($this->tag)) { - $this->notices = $this->getTaggedNotices($this->tag, $this->limit); + $this->notices = $this->getTaggedNotices(); } else { - $this->notices = $this->getNotices($this->limit); + $this->notices = $this->getNotices(); } return true; } @@ -103,7 +103,7 @@ class UserrssAction extends Rss10Action $profile = $user->getProfile(); if (!$profile) { common_log_db_error($user, 'SELECT', __FILE__); - $this->serverError(_('User without matching profile')); + $this->serverError(_('User without matching profile.')); return null; } $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);