From 45dedee0a2206e539aadabd81d7959c474427925 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 5 Feb 2021 07:39:34 +0000 Subject: [PATCH] Partly reverting change --- mod/notes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/notes.php b/mod/notes.php index 9fa34e5262..b7f840b08c 100644 --- a/mod/notes.php +++ b/mod/notes.php @@ -82,7 +82,7 @@ function notes_content(App $a, $update = false) $params = ['order' => ['created' => true], 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]]; - $r = Post::selectForUser(local_user(), ['uri-id'], $condition, $params); + $r = Post::selectThreadForUser(local_user(), ['uri-id'], $condition, $params); $count = 0;