diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-06-18 00:12:53 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-06-18 00:12:53 -0700 |
commit | ba3a484a655f93329463465d224dfc6ae6494434 (patch) | |
tree | f94224e049a37d08bf17fab05259e51969c35217 | |
parent | c14c9e1a086f0de29ef5c37fbeb34f6082b1c5ef (diff) |
order notices in a conversation
-rw-r--r-- | actions/conversation.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actions/conversation.php b/actions/conversation.php index 20c68986c..d3fc5b6a9 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); } |