diff options
Diffstat (limited to 'actions/userrss.php')
-rw-r--r-- | actions/userrss.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/userrss.php b/actions/userrss.php index 89fe0efb2..2ae45dc9c 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -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); } |