diff options
Diffstat (limited to 'actions/allrss.php')
-rw-r--r-- | actions/allrss.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/allrss.php b/actions/allrss.php index 86d98284e..26e3f5241 100644 --- a/actions/allrss.php +++ b/actions/allrss.php @@ -49,7 +49,7 @@ class AllrssAction extends Rss10Action { $notice->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$user->id.' and subscribed = notice.profile_id)', 'OR'); $notice->whereAdd('profile_id = ' . $user->id, 'OR'); - $notice->orderBy('created DESC'); + $notice->orderBy('created DESC, notice.id DESC'); if ($limit != 0) { $notice->limit(0, $limit); } |