From e8effad7f270510a0f559dac4a72f085c7741c96 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 22 Jan 2018 17:16:46 +0000 Subject: [PATCH] Bugfix: Always comment on the correct entry --- mod/network.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/network.php b/mod/network.php index 5362a566f1..5b7cf83a8e 100644 --- a/mod/network.php +++ b/mod/network.php @@ -815,7 +815,7 @@ function networkThreadedView(App $a, $update = 0) if (count($data) > 0) { logger('Tagged items: ' . count($data) . ' - ' . $bottom_limit . ' - ' . $top_limit . ' - ' . local_user()); //$last_date); - $r = array_merge($r, $data); + $r = array_merge($data, $r); } }