Reversed history.timeline order (DESC)

This commit is contained in:
xdrm-brackets 2017-11-13 11:42:08 +01:00
parent 3c642732b2
commit 061d473cad
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_ASC);
->orderby('timestamp', Rows::ORDER_DESC);
return $history->fetch();
}