fix message ordering glitch on network page

This commit is contained in:
Friendika 2011-09-23 05:03:12 -07:00
parent 477ba8e574
commit 7ea6b0a126
1 changed files with 1 additions and 1 deletions

View File

@ -358,7 +358,7 @@ function network_content(&$a, $update = 0) {
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
AND `item`.`parent` = `parentitem`.`id` AND `item`.`parent` IN ( %s )
$sql_extra
ORDER BY `parentitem`.$ordering DESC, `item`.`gravity` ASC, `item`.`created` ASC ",
ORDER BY `parentitem`.$ordering DESC, `parentitem`.`id` ASC, `item`.`gravity` ASC, `item`.`created` ASC ",
intval(local_user()),
dbesc($parents_str)
);