X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fuserrss.php;h=2ae45dc9cd25d8ef094db12ea80a6a69f4f32083;hb=334c652e80e9bb9e53116963ec3f794588be4439;hp=445afeca57de0c0e4949ec4e69c8898310b2f67a;hpb=87b494f1ebbe7640d194ef322af12fdf378295df;p=quix0rs-gnu-social.git diff --git a/actions/userrss.php b/actions/userrss.php index 445afeca57..2ae45dc9cd 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -32,7 +32,7 @@ class UserrssAction extends Rss10Action { $this->user = User::staticGet('nickname', $nickname); if (!$this->user) { - common_user_error(_('No such nickname.')); + common_user_error(_('No such user.')); return false; } else { return true; @@ -46,7 +46,7 @@ class UserrssAction extends Rss10Action { $notice = DB_DataObject::factory('notice'); $notice->profile_id = $user->id; # user id === profile id - $notice->orderBy('created DESC'); + $notice->orderBy('created DESC, notice.id DESC'); if ($limit != 0) { $notice->limit(0, $limit); }