From: Michael Vogel Date: Tue, 28 Aug 2018 18:15:25 +0000 (+0000) Subject: Fix: The profile page is now ordered after the creation date again (#5690) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=91a3bf5610910da8709f0fe9aa3de2201efb124e;p=friendica.git Fix: The profile page is now ordered after the creation date again (#5690) --- 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));