History details.timeline ASC order (not reverse as history.view)

This commit is contained in:
xdrm-brackets 2017-11-12 14:53:06 +01:00
parent 43e626d32d
commit bc1df78120
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@
->join('id_action', $actions)
->select('id_history')
->select('timestamp')
->orderby('timestamp', Rows::ORDER_DESC);
->orderby('timestamp', Rows::ORDER_ASC);
return $history->fetch();
}