diff options
author | Brion Vibber <brion@pobox.com> | 2010-12-17 17:13:21 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-12-17 17:13:21 -0800 |
commit | d8a3a88ec8eae3134694c98e5a9ae42bc30b289f (patch) | |
tree | 22554406da875404d3417edd91eaeaeef0bb693c /classes/User.php | |
parent | bf59eaf602c8319d5ae99d9809b4d4867cb632cd (diff) | |
parent | fb8312ebf4537033077917d0003f716206d0d23d (diff) |
Merge branch '0.9.x' into 1.0.x
Conflicts:
classes/Memcached_DataObject.php
Diffstat (limited to 'classes/User.php')
-rw-r--r-- | classes/User.php | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/classes/User.php b/classes/User.php index 4baa6d1b3..04b9b4cc6 100644 --- a/classes/User.php +++ b/classes/User.php @@ -750,19 +750,14 @@ class User extends Memcached_DataObject $notice->profile_id = $this->id; $notice->whereAdd('repeat_of IS NOT NULL'); - $notice->orderBy('id DESC'); + $notice->orderBy('created DESC, id DESC'); if (!is_null($offset)) { $notice->limit($offset, $limit); } - if ($since_id != 0) { - $notice->whereAdd('id > ' . $since_id); - } - - if ($max_id != 0) { - $notice->whereAdd('id <= ' . $max_id); - } + Notice::addWhereSinceId($notice, $since_id); + Notice::addWhereMaxId($notice, $max_id); $ids = array(); @@ -795,17 +790,17 @@ class User extends Memcached_DataObject 'FROM notice original JOIN notice rept ON original.id = rept.repeat_of ' . 'WHERE original.profile_id = ' . $this->id . ' '; - if ($since_id != 0) { - $qry .= 'AND original.id > ' . $since_id . ' '; + $since = Notice::whereSinceId($since_id, 'original.id', 'original.created'); + if ($since) { + $qry .= "AND ($since) "; } - if ($max_id != 0) { - $qry .= 'AND original.id <= ' . $max_id . ' '; + $max = Notice::whereMaxId($max_id, 'original.id', 'original.created'); + if ($max) { + $qry .= "AND ($max) "; } - // NOTE: we sort by fave time, not by notice time! - - $qry .= 'ORDER BY original.id DESC '; + $qry .= 'ORDER BY original.created, original.id DESC '; if (!is_null($offset)) { $qry .= "LIMIT $limit OFFSET $offset"; |