From: Michael Date: Sat, 15 Aug 2020 06:04:09 +0000 (+0000) Subject: Issue 9013: In "post" order only load new toplevel posts X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7c80e93ea8079727645c047b202573cb917ca08f;p=friendica.git Issue 9013: In "post" order only load new toplevel posts --- diff --git a/mod/network.php b/mod/network.php index 79d8c36a7e..b493f7770c 100644 --- a/mod/network.php +++ b/mod/network.php @@ -597,6 +597,9 @@ function networkThreadedView(App $a, $update, $parent) if (!empty($parent)) { // Load only a single thread $sql_extra2 = "`item`.`id` = ".intval($parent); + } elseif ($order === 'post') { + // Only load new toplevel posts + $sql_extra2 = "`item`.`unseen` AND `item`.`gravity` = " . GRAVITY_PARENT; } else { // Load all unseen items $sql_extra2 = "`item`.`unseen`";