From: Evan Prodromou Date: Thu, 18 Jun 2009 07:12:53 +0000 (-0700) Subject: order notices in a conversation X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ba3a484a655f93329463465d224dfc6ae6494434;p=quix0rs-gnu-social.git order notices in a conversation --- diff --git a/actions/conversation.php b/actions/conversation.php index 20c68986cb..d3fc5b6a9c 100644 --- a/actions/conversation.php +++ b/actions/conversation.php @@ -217,6 +217,8 @@ class ConversationTree extends NoticeList $this->out->elementStart('ol', array('class' => 'notices')); + sort($children); + foreach ($children as $child) { $this->showNoticePlus($child); }