From 91a3bf5610910da8709f0fe9aa3de2201efb124e Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 28 Aug 2018 18:15:25 +0000 Subject: [PATCH] Fix: The profile page is now ordered after the creation date again (#5690) --- mod/profile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/profile.php b/mod/profile.php index 4f2e22d674..2e3ccd28c5 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -333,7 +333,7 @@ function profile_content(App $a, $update = 0) } } - $o .= conversation($a, $items, 'profile', $update, false, 'commented', local_user()); + $o .= conversation($a, $items, 'profile', $update, false, 'created', local_user()); if (!$update) { $o .= alt_pager($a, count($items));