forked from GNUsocial/gnu-social
Avoid ordering just by a timestamp
Try to also employ an id when possible. Involves reworking some of the indices.
This commit is contained in:
@@ -45,7 +45,7 @@ function testAllUsers($filter, $minimum, $percent)
|
||||
|
||||
do {
|
||||
$user = new User();
|
||||
$user->orderBy('created');
|
||||
$user->orderBy('created, id');
|
||||
$user->limit($offset, $limit);
|
||||
|
||||
$found = $user->find();
|
||||
|
Reference in New Issue
Block a user