Update sorting for User::repeatedByMe() -- currently unused. Likely not ideally indexed yet.

This commit is contained in:
Brion Vibber 2010-12-17 15:28:55 -08:00
parent b80151275a
commit 71151b3bc0
1 changed files with 3 additions and 8 deletions

View File

@ -755,19 +755,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();