mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:02:58 +00:00
Items on the network page should now be ordered always like expected
This commit is contained in:
parent
617ace38e4
commit
ccfaf6eef3
1 changed files with 3 additions and 10 deletions
|
@ -345,7 +345,7 @@ function networkConversation($a, $items, $mode, $update, $ordering = '')
|
|||
// Set this so that the conversation function can find out contact info for our wall-wall items
|
||||
$a->page_contact = $a->contact;
|
||||
|
||||
$o = conversation($a, $items, $mode, $update, $ordering);
|
||||
$o = conversation($a, $items, $mode, $update, false, $ordering);
|
||||
|
||||
if (!$update) {
|
||||
if (PConfig::get(local_user(), 'system', 'infinite_scroll')) {
|
||||
|
@ -689,9 +689,6 @@ function networkThreadedView(App $a, $update, $parent)
|
|||
dbesc(DateTimeFormat::convert($datequery2, 'UTC', date_default_timezone_get()))));
|
||||
}
|
||||
|
||||
$sql_order = '';
|
||||
$order_mode = 'received';
|
||||
|
||||
if ($conv) {
|
||||
$sql_extra3 .= " AND $sql_table.`mention`";
|
||||
}
|
||||
|
@ -699,14 +696,10 @@ function networkThreadedView(App $a, $update, $parent)
|
|||
// Normal conversation view
|
||||
if ($order === 'post') {
|
||||
$ordering = '`created`';
|
||||
if ($sql_order == '') {
|
||||
$order_mode = 'created';
|
||||
}
|
||||
$order_mode = 'created';
|
||||
} else {
|
||||
$ordering = '`commented`';
|
||||
if ($sql_order == '') {
|
||||
$order_mode = 'commented';
|
||||
}
|
||||
$order_mode = 'commented';
|
||||
}
|
||||
|
||||
if ($sql_order == '') {
|
||||
|
|
Loading…
Reference in a new issue